①.添加單個class:web
<div v-bind:class="{ active: isActive }"></div>
上面的語法表示 active
這個 class
存在與否將取決於數據屬性 isActive
爲真仍是假。數組
②.添加多個class:瀏覽器
<div class="static" v-bind:class="{ active: isActive, 'text-danger': hasError }"> </div>
和以下 data:flex
data: { isActive: true, hasError: false }
結果渲染爲:this
<div class="static active"></div>
③.綁定的數據對象沒必要內聯定義在模板裏:flexbox
<div v-bind:class="classObject"></div> data: { classObject: { active: true, 'text-danger': false } }
④.綁定一個返回對象的計算屬性:code
<div v-bind:class="classObject"></div> data: { isActive: true, error: null }, computed: { classObject: function () { return { active: this.isActive && !this.error, 'text-danger': this.error && this.error.type === 'fatal' } } }
①.component
<div v-bind:class="[activeClass, errorClass]"></div> data: { activeClass: 'active', errorClass: 'text-danger' }
渲染爲:orm
<div class="active text-danger"></div>
②.若是你也想根據條件切換列表中的 class,能夠用三元表達式:對象
<div v-bind:class="[isActive ? activeClass : '', errorClass]"></div>
這樣寫將始終添加 errorClass
,可是隻有在 isActive
是true
時才添加 activeClass
。
③.在數組語法中也能夠使用對象語法:
<div v-bind:class="[{ active: isActive }, errorClass]"></div>
當在一個自定義組件上使用 class
屬性時,這些類將被添加到該組件的根元素上面
。這個元素上已經存在的類不會被覆蓋。
以下,你聲明瞭這個組件:
Vue.component('my-component', { template: '<p class="foo bar">Hi</p>' })
而後在使用它的時候添加一些 class
:
<my-component class="baz boo"></my-component>
HTML 將被渲染爲:
<p class="foo bar baz boo">Hi</p>
對於帶數據綁定 class
也一樣適用:
<my-component v-bind:class="{ active: isActive }"></my-component>
當 isActive
爲 true
時,HTML 將被渲染成爲:
<p class="foo bar active">Hi</p>
CSS 屬性名能夠用駝峯式
(camelCase) 或短橫線分隔 (kebab-case,記得用單引號括起來
) 來命名:
<div v-bind:style="{ color: activeColor, fontSize: fontSize + 'px' }"></div> data: { activeColor: 'red', fontSize: 30 }
直接綁定到一個樣式對象一般更好,這會讓模板更清晰:
<div v-bind:style="styleObject"></div> data: { styleObject: { color: 'red', fontSize: '13px' } }
一樣的,對象語法經常結合返回對象的計算屬性使用。
v-bind:style
的數組語法能夠將多個樣式對象應用到同一個元素上:
<div v-bind:style="[baseStyles, overridingStyles]"></div>
當 v-bind:style
使用須要添加瀏覽器引擎前綴的 CSS 屬性時,如 transform
,Vue.js 會自動偵測並添加相應的前綴。
從 2.3.0
起你能夠爲 style
綁定中的屬性提供一個包含多個值的數組,經常使用於提供多個帶前綴的值,例如:
<div :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"></div>
這樣寫只會渲染數組中最後一個被瀏覽器支持的值。在本例中,若是瀏覽器支持不帶瀏覽器前綴的 flexbox
,那麼就只會渲染 display: flex
。