HTML部分
<div class="page-switch">
<div class="page-title">Switch</div>
<div class="page-part page-switch-padding">
<mt-switch v-model="swithValue" @change="swithChange">
<label v-text="swith"></label>
</mt-switch>
</div>
</div>
JS部分
data() {
return {
swithValue: false,
swith: '加载上次'
}
methods: {
swithChange(event) {
if (event == true) {
this.swith = '取消加载'
} else if (event == false) {
this.swith = '加载上次'
}
console.log(event)
}
}
网友评论