JSFiddle - React, Tailwind, and code Playground

by uedatakuya

HTML

<script>
    function MyCtrl($scope) {
        $scope.person = {
            name: 'Takuya Ueda',
            age: 28
        };

        setTimeout(function() {
            alert('hoge');
            $scope.person.hoge = 'hoge';
        }, 5000);
    }
</script>
<div ng-app="">
    <div ng-controller="MyCtrl"> <span>name: {{person.name}}</span>
 <span>age: {{person.age}}</span>
 <span>{{person.hoge}}</span>

    </div>
</div>