Vue实现active点击切换样式

前几天一个月薪35k的兄弟,给我推了一个人工智能学习网站,看了一段时间挺有意思的。包括语音识别、机器翻译等从基础到实战都有,很详细,分享给大家。大家及时保存,说不定啥时候就没了。

<div 
:class="[ 'show', current == inx  ?  'active' : ' ' ]"
@click="active(inx)"
v-for="(i,inx) in 10"
:key="inx"
></div>

data(){
   return {
      current: 0,   
   }
}

methods: {
   active(inx){
      this.current = inx
   }
}

.active {
background: #ccc;
padding-left: 24px;
border-left: 4px solid #333;
}

.show {
  // 默认样式
}
Logo

前往低代码交流专区

更多推荐