資料綁定一個常見需求是操作元素的 class 清單和它的內聯樣式。因為它們都是 attribute,我們可以用 v-bind 處理它們:只需要計算表達式最終的字串。不過,字串拼接麻煩又易錯。因此,當 v-bind 用於 class 和 style 時,Vue.js 專門增強了它。表達式的結果類型除了字串之外,還可以是物件或陣列。
一.綁定Class屬性。
綁定資料用v-bind:指令,簡寫成:
語法:
。 class後面的雙引號裡接受一個物件字面量/物件參考/陣列作為參數,這裡,{active: isActive}是物件參數,active是class名稱,isActive是一個布林值。以下是一個例子:
綁定物件字面量
html:
<div id="classBind"> <span :class="{warning:isWarning,safe:isSafe}" v-on:click="toggle"> 状态:{{alert}}{{isSafe}} </span> </div> //js var app11=new Vue({ el:'#classBind', data:{ isWarning:true, alertList:['红色警报','警报解除'], alert:'' }, computed:{ isSafe:function(){ return !this.isWarning; } }, methods:{ toggle:function(){ this.isWarning=!this.isWarning; this.alert= this.isWarning?this.alertList[0]:this.alertList[1]; } } });
css:
.warning{ color:#f24; } .safe{ color:#42b983; }
後
文字?狀態:警報解除true
//狀態:紅色警報false
綁定物件參考
這裡綁定的物件可以寫到Vue實例的data裡面,而在class="classObj ",雙引號中的class是對Vue實例中classObj物件的參考。 classObj可以放在data中或computed中,如果在computed中,則classObj所對應的函數必須回傳一個物件如下:
js:
var app11=new Vue({ el:'#classBind', data:{ isWarning:true, alertList:['红色警报','警报解除'], alert:'' }, computed: { isSafe: function () { return !this.isWarning; }, classObj:function(){ return { warning: this.isWarning, safe:this.isSafe } } }, methods:{ toggle:function(){ this.isWarning=!this.isWarning; this.alert= this.isWarning?this.alertList[0]:this.alertList[1]; } } });
:
js
<div v-bind:class="classArray" @click="removeClass()">去掉class</div>
css:
data: { classArray:["big",'red'] } methods:{ removeClass:function(){ this.classArray.pop(); } }
花效果,點去掉個去掉另一台尺寸,會調用最後一檔紅色變黑,再點,去掉'big',字體變小。
二、綁定內聯style
此時此刻,我一邊看著本頁旁邊的那個Vue api文檔學,一邊到這裡賣,裝逼的感覺真爽o(^▽^)o
html
.big{ font-size:2rem; } .red{ color:red; }
css
這個不需要css。 。 。
js
<div id="styleBind"> <span :style="{color:theColor,fontSize:theSize+'px'}" @click="bigger">styleBind</span> </div>
除了傳入物件字面量以外,也可以傳入物件引用、陣列給V-bind:style