您好,登錄后才能下訂單哦!
這篇文章主要介紹Vue樣式切換及三元判斷樣式是如何關(guān)聯(lián)的,文中介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們一定要看完!
假設(shè)有需求:
后臺返回狀態(tài)1:啟用,0:禁用
1、若要使啟用為綠色,禁用不添加其他樣式
<el-table-column prop="statusName" align="center" label="狀態(tài)"> <template slot-scope="scope"> <div :class="{active:scope.row.status==1}"> {{ scope.row.statusName }} </div> </template> </el-table-column> .active{ color:green; }
1、若要使啟用為綠色,禁用為紅色,可使用三元表達(dá)式綁定樣式
<el-table-column prop="statusName" align="center" label="狀態(tài)"> <template slot-scope="scope"> <div :class="scope.row.status==1? 'active':'native'"> {{ scope.row.statusName }} </div> </template> </el-table-column> .active{ color:green; } .native{ color:red; }
補(bǔ)充知識:vue通過判斷寫樣式(v-bind)
如下所示:
v-bind:
以上是Vue樣式切換及三元判斷樣式是如何關(guān)聯(lián)的的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注億速云行業(yè)資訊頻道!
免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。