new Vue({
el:"#app",
data:{
text:"hello word"
},
methods:{
changetext:function(){
this.text="hello china"
}
}
})
<div id="app">
<p>
{{text}}
</p>
<bution v-on:click="changetext">
改变
</bution>
</div>