欢迎光临散文网 会员登陆 & 注册

Vue从零开始总结7

2021-04-11 11:58 作者:忘魂儿  | 我要投稿

动态绑定style样式

<h2 :style="{fontSize:'100px'}">{{message}}</h2>
<h2 :style="{fontSize:finalSize1}">{{message}}</h2>
<h2 :style="{fontSize:finalSize2}">{{message}}</h2>
<h2 :style="changeSize()">{{message}}</h2>

如果不加' '作为字符串进行解析,那么vue就会去找这个变量

data:{

finalSize1:'30px',
finalSize2:60+'px',//int类型和字符串类型进行隐式转化,最后为字符串类型
finalSize3:90+'px'

}

methods:{

changeSize:function (){
 return  {fontSize:this.finalSize3}
}

}

Vue从零开始总结7的评论 (共 条)

分享到微博请遵守国家法律