vue中class和内联style绑定

绑定 HTML Class

vue中,class、内联style绑定、computed属性

1.class绑定

 2.内联style绑定

Vue中动态绑定style样式写法

<h2 :style="{ fontSize: flag ? '30px' : '10px' }">Hello World</h2>
<h2 :style="[{ fontSize: flag ? '30px' : '10px' }]">Hello World</h2>

 

posted @ 2018-10-18 17:31  霓裳依旧  阅读(162)  评论(0编辑  收藏  举报