天气案例:
<body>
<div id="root">
<h1>今天天气很{{info}} </h1>
<button @click="changWeather">切换天气</button>
</div>
</body>
<script>
new Vue({
el: '#root',
data: {
isHot: true,
},
computed: {
info() {
return this.isHot ? '热' : '冷'
}
},
methods: {
changWeather() {
this.isHot = !this.isHot
}
},
})
</script>
or<btn @click="isHot = !isHot"></btn>
不学了,王者干将免费皮肤任务还没做完呢!