vue动态渲染样式 class

vue中绑定class,使用中括号 + 三元运算符 搭配写法:

//普通class是固定的样式,:class是
<div class="tab-box" :class="[index==rowIndex?'rowActive':'']"></div>
原文地址:https://www.cnblogs.com/jiaoshou/p/13921902.html