关于vue :style 的几种使用方式

一 ,最通用的写法 

<p :style="{fontFamily:arr.conFontFamily,color:arr.conFontColor,backgroundColor:arr.conBgColor}">{{con.title}}</p>

二, 三元表达式

<a :style="{color:(index==0?arr.conFontColor:'#000')}" :href="con.subTitleHref" target="_self">{{con.subTitle}}</a>

  一和二 可以联合起来写 如下

<p :style="{fontFamily:arr.conFontFamily,fontSize:(arr.conFontSize!=0.36?arr.conFontSize+arr.conFontUnit:''),color:arr.conFontColor,backgroundColor:arr.conBgColor}">{{con.title}}</p>

转:https://www.cnblogs.com/weichenzhiyi/p/8406021.html

posted @ 2020-03-19 11:36  YJUI  阅读(9849)  评论(0)    收藏  举报