Vue动态设置Style属性_fuzhongbin的博客-CSDN博客_vue 动态style

 :style="{ color:domain.groups == 1? '#ccc': domain.groups == 2 ? '#ccc' : '' }"

凡是有-的style属性名都要变成驼峰式,比如font-size要变成fontSize
除了绑定值,其他的属性名的值要用引号括起来,比如backgroundColor:'#00a2ff'而不是 backgroundColor:#00a2ff
     对象
html :style="{ color: activeColor, fontSize: fontSize + 'px' }"

html :style="{display:(activeName=='first'?'flex':'none')}"

     数组
     html :style="[baseStyles, overridingStyles]"

     html :style="[{display:(activeName=='first'?'flex':'none')},{fontSize:'20px'}]"

    三目运算符
    html :style="{color:(index==0?conFontColor:'#ddd')}"

    html :style="[{color:(index==0?conFontColor:'#ddd')},{fontSize:'22px'}]"

   多重值
    此时,浏览器会根据运行支持情况进行选择

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

Logo

华为开发者空间,是为全球开发者打造的专属开发空间,汇聚了华为优质开发资源及工具,致力于让每一位开发者拥有一台云主机,基于华为根生态开发、创新。

更多推荐