SOURCE

console 命令行工具 X clear

                    
>
console
new Vue({
  el:'#app',
  data:{
    foo:{
      bar:1
    }
  },
  methods:{
    hello(){
      this.foo.bar = 'hello world'
    }
  }
})
<div id="app">
  <div v-text="foo.bar"></div>
  <button @click="hello">change</button>
</div>