美文网首页
vue初学-class与style绑定

vue初学-class与style绑定

作者: 普通的一个程序员 | 来源:发表于2021-01-06 19:26 被阅读0次

    操作class和内联样式是一个常见需求, 都是attribute,我们可以使用v-bind处理, 只需要通过表达式计算出字符串结果即可。vue针对class和style做了增强,表达式结果类型除了字符串之外,还可以是对象或数组

    对象语法

    <div v-bind:class="{ active: isActive }"></div> 
    

    active 这个class存在与否取决于 property isActive的true还是false,可以在对象中传入更多的字段来切换多个class,此外 v-bind:class指令可以与普通的class attribute共存, 如下:

        <div class = 'static' v-bind:class="{ active: isActive, 'text-danger':hasError }"></div>
    
    <!-- 如下的data -->
    data: {
        isActive: true,
        hasError: false
    }
    

    渲染结果:

      <div class="static active"></div>
    

    isActive和hasError变化时, class列表将相应的更新。如果hasError的值如果变为true,class的列表将变为 “static active text-danger"

    绑定的数据对象不必内联定义在模板里:

    <div v-bind:class="classObject"></div>
    
    <script> 
        data: {
            classObject: {
                active: true,
                'text-danger': false
            }
        }
    </script>
    

    效果跟上面的一样。 也可以绑定一个返回对象的计算属性,这是一个常用且强大的模式

    <div v-bind:class="classObject"> </div>
    <script>
    data: {
        isActive: true,
        hasError: false
    }
    
    computed: {
        classObject: function() {
            return { 
                active: this.isActive && !this.error,
                'text-danger': this.error && this.error.type==='fatal'
            }
        }
    }
    </script>
    

    数组语法

    可以把数组传递给 v-bind:class,应用一个class列表

        <div v-bind:class="[ activeClass, errorClass]"></div>
    
    <script>
        data : {
            activeClass: 'active',
            errorClass: 'text-danger'
        }
    </script>
    
    <!-- 渲染结果 -->
    <div class="active text-danger"></div>
    

    如果根据条件切换,可以使用三元表达式

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

    当class控制 较为繁琐是, 可以在数组语法中使用对象语法

    <div v-bind:clas="[{active: isActive}, errorClass]"></div>
    

    用在组件上

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

    实例如下:

    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>
    
    <!-- 带数据绑定clas也同样适用 -->
    <my-component v-bind:class="{active: isActive}"></my-component>
    
    <!-- 当isActive = true时 -->
    <p class="foo bar active" ></p>
    
    

    绑定内联样式

    v-bind:style 的对象语法十分直观, 非常像css,其实时一个javaScript对象。

    <div v-bind:style="{color: activeColor, fond: fontSize + 'px'}"></div>
    
    <script> 
    data: {
        activeColor:"red",
        fondSize: 30    
    }
    </script>
    

    直接绑定到一个样式对象通常更好, 让木杆更加清晰

    <div v-bind:style="styleObject"></div>
    
    <script>
    data: {
      styleObject: {
        color: 'red',
        fontSize: '13px'
      }
    }
     </script>
    

    数组语法

    v-bind:style的数组语法可以将多个样式对象应用到同一个元素上:

    <div v-bind:style="[bassStyles, overridingSytyles]">
    

    自动添加前缀

    当v-bind:style使用需要添加浏览器引擎前缀css property时,vue会自动侦测,并添加相应去前缀

    多重值

    2.3.0起,可以为 style绑定中的property提供一个包含多个值的数组,常用于提供多个带前缀的值,例如

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

    这样子写,置灰渲染数组中最后一个浏览器支持的值。此例中,如果浏览器支持不带浏览器浅醉的flexbox,那么渲染结果为
    display: flex

    相关文章

      网友评论

          本文标题:vue初学-class与style绑定

          本文链接:https://www.haomeiwen.com/subject/nbsooktx.html