JSFiddle - React, Tailwind, and code Playground

by lmk123

HTML

<script src="//cdnjs.cloudflare.com/ajax/libs/vue/1.0.28/vue.js"></script>
<div id="app">
  {{ test | json }}
</div>

JavaScript

new Vue({
  el: '#app',
  data: {
    obj: {
      a: 'b'
    },
    test: null
  },
  ready() {
    this.test = this.obj
    setTimeout(function() {
      this.obj.a = 'c'
    }.bind(this), 100)
  }
})