vue点击时动态改变样式 ------- 最简单的方法

vue点击时动态改变样式

template中

<li :class="{ active:index==isActive }" @click="changeValue(index)" 
v-for="( item , index ) in items" :key="item.CategoryId">{{item.CategoryName}}</li>

data中

isActive:false,

methods中

changeValue(index){
this.isActive=index;
}`



猜你喜欢

转载自www.cnblogs.com/katydids/p/9948665.html