:style="{}"
<strong :style="{color: 'red', backgroundColor: 'gray'}"></strong>
:style="a"
new Vue({ el: '#box', data: { red: 'red', gray: 'gray', a: { color: 'red', backgroundColor: 'gray' //注意复合样式的书写规范 } } });
<strong :style="a">阿斯顿发</strong>
:style="[a, b]", a, b对应的是data里的两个json数据
更多vue中class和style设置的相关方法 相关文章请关注PHP中文网!