标签:lse on() default his efault false this click nbsp
<div class="title">
<span @click="saoMa" :class="{‘active‘:color1}">扫码报修</span>
<span @click="other" :class="{‘active‘:color2}">其他途径报修</span>
</div>
export default {
data(){
return{
color1:true,
color2:false,
}
},
methods:{
saoMa:function(){
this.color1 = true;
this.color2 = false;
},
other:function(){
this.color1 = false;
this.color2 = true;
},
}
}
<style>
.active{
color:#1057CD;
}
</style
标签:lse on() default his efault false this click nbsp
原文地址:https://www.cnblogs.com/gwkzb/p/12469689.html