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

 

posted @ 2020-03-12 15:40  奔向太阳的向日葵  阅读(133)  评论(0编辑  收藏  举报