vue class绑定-04

2018-11-20  本文已影响0人  尼莫nemo

v-bind 绑定class - 对象语法


<div v-bind:class="{ active: isActive }"></div> 
//当isActive为真有active 这个class 反之亦然

<div class="static"
     v-bind:class="{ active: isActive, 'text-danger': hasError }">
</div>
  data: {
    isActive: true,
    hasError: false
 }
  //绑定的class可以与普同的class 共存

  //上 渲染结果为
  <div class="static active"></div>


<div v-bind:class="classObject"></div>
//同方式一只是数据书写的地方不一致而已
data: {
  classObject: {
    active: true,
    'text-danger': false
  }
}


<div v-bind:class="classObject"></div>

computed: {
  classObject: function () {
    return {
      active: this.isActive && !this.error,
      'text-danger': this.error && this.error.type === 'fatal'
    }
  }
}

v-bind 绑定class - 数组语法


<div v-bind:class="[activeClass, errorClass]"></div>

  data: {
    activeClass: 'active',
    errorClass: 'text-danger'
  }
//渲染为
<div class="active text-danger"></div>


<div v-bind:class="[isActive ? activeClass : '', errorClass]"></div>
//当isAtive为真的时候 activeCalss就存在 反之不存在 但是errorClass始终存在

<div v-bind:class="[{ active: isActive }, errorClass]"></div>
//使用数组,中包含对向 的方式更加清晰

v-bind class 在组件上使用

Vue.component('my-component', {
  template: '<p class="foo bar">Hi</p>'
})
//注册组件名为my-conponent 的组件,组件模板是tempalte 对应的字符串

//如
<my-component class="baz boo"></my-component>

//渲染的结果为
<p class="foo bar baz boo">Hi</p>

v-bind:style 内联样式


<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'
  }
}


<div v-bind:style="[baseStyles, overridingStyles]"></div>

v-bind:style 使用需要添加浏览器引擎前缀的 CSS 属性时,如 transform,Vue.js 会自动侦测并添加相应的前缀


<div :style="{ display: ['-webkit-box', '-ms-flexbox', 'flex'] }"></div>

上一篇 下一篇

猜你喜欢

热点阅读