:style表达式有两种写法
:style=“{ xxx: xxx }”
:style=“[{ xxx: xxx }]”
<!-- 属性写在前面,属性加不加引号都可以,多个属性,逗号隔开 --><!-- 一个属性 -->
<span :style="{ top: CustomBar + 'px' }"></span><!-- 多个属性,逗号隔开 -->
<span :style="{ width: boxWidth + 'px', height: boxHeight + 'px' }"></span><!-- 三元表达式 -->
<span :style="{color: testNum > 100 ? 'red' : testNum < 70 ? 'blue' : ''}">{{ testNum }}</span>