vue中绑定样式
Posted gwkzb
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue中绑定样式相关的知识,希望对你有一定的参考价值。
<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
以上是关于vue中绑定样式的主要内容,如果未能解决你的问题,请参考以下文章