Vue

Vue绑定样式

2018-08-15  本文已影响54人  ChangLau

绑定 Class

当在一个自定义组件上使用 class 属性时,这些类将被添加到该组件的根元素上面。这个元素上已经存在的类不会被覆盖。

<my-component class="styleBlue"></my-component>
Vue.component('my-component', {
    template: '<div class="child"></div>'
});
<!-- 渲染为 -->
<div class="child styleBlue"></div>
<!-- 对于带数据绑定的也合适 -->
<my-component v-bind:class="{styleRed:showRed}"></my-component>

绑定内联样式

<div v-bind:style="[styleObject, styleRadius]"></div>
computed: {
    styleObject: function () {
        return {
            'width': this.styleWidth + 'px',
            'height': this.styleHeight + 'px',
            'background-color': this.styleColor
        }
    },
    styleRadius: function () {
        return { 'border-radius': this.radius + 'px' }
    }
}

总结
使用Vue Style绑定具有动态性,能够根据数据变化响应式修改页面呈现,Vue绑定Class就比较死板,只能通过修改Class去修改。
举个例子。如果动态修改div的宽度,使用绑定Class就很难实现,你不可能定义很多个Class,只有Width属性不一样,每次根据数据去切换Class,如果使用Style实现,直接可以将数据和样式绑定在一起,数据改变样式改变。

上一篇 下一篇

猜你喜欢

热点阅读