vue基础之样式绑定(class,style)

在Vue中使用样式 使用class样式 数组 <h1 :class="['red', 'thin']">这是一个邪恶的H1</h1> 数组中使用三元表达式 <h1 :class="['red', 'thin', isactive?'active':'']">这是一个邪恶的H1</h1> 数组中嵌套对象 <h1 :class="['red', 'thin', {'active': isactive}
相关文章
相关标签/搜索