Vue基础语法之class、style绑定




  
  04_class与style绑定
  





1. class绑定: :class='xxx'

xxx是字符串

xxx是对象

xxx是数组

2. style绑定

:style="{ color: activeColor, fontSize: fontSize + 'px' }"

 

你可能感兴趣的:(Vue)