<div id="box">
<p>{{mag}}</p>
<button v-on:click="alt">按钮</button>
</div>
<script src="js/vue.js"></script>
<script>
new Vue({
el:"#box",
data:{
mag:'hello word',
flag:true
},
methods:{
alt:function(){
if(this.flag){
this.mag='hello word'
this.flag=false
}else{
this.mag='hello vue'
this.flag=true
}
}
}
})
</script>
网友评论