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中绑定样式的主要内容,如果未能解决你的问题,请参考以下文章

如何利用Vue.js库中的v-bind绑定样式属性

Vue JS CSS 样式绑定

在vue中使用样式的方法

Vue 动态样式绑定

一起学Vue之样式绑定

14 vue的data函数中对象和数组的方式绑定模板样式