vue给元素动态绑定样式
<div :style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
data () {
return {
//初始样式
activeColor:'red',
fontSize :30,
};
},
//改变样式
this.activeColor='#000',
this.fontSize=20
<div :style="{ color: activeColor, fontSize: fontSize + 'px' }"></div>
data () {
return {
//初始样式
activeColor:'red',
fontSize :30,
};
},
//改变样式
this.activeColor='#000',
this.fontSize=20