其他分享
首页 > 其他分享> > 1很快的过基础

1很快的过基础

作者:互联网

绑定class/style

个人习惯:通通用函数绑定. 函数要显式执行().

 //  <p  :class="setABClass()">{{str}}----</p>  --》 class="a b"
        setABClass(){
          // return { //对象语法可以
          //   a:true,
          //   b:true
          // }
          return ['a','b'].join(' ') //数组语法也可以 建议使用数组语法吧
        }

 

// <p :style="setPStyle()">3443543</p>
        setPStyle(){
          const obj= { //对象语法  style建议用对象
            fontSize:'30px',
            'font-weight':600,
            color:'red'
          }
          return obj

        return ['font-weight:600','font-size:40px','color:red'].join(';') //数组语法

 

动态绑定属性[] 和绑定对象 直接 v-bind="$attr"

 

标签:return,600,绑定,基础,语法,很快,数组,font
来源: https://www.cnblogs.com/xiaoliziaaa/p/14903329.html