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>