美文网首页
2019-05-14Vue列表渲染,点击改变样式

2019-05-14Vue列表渲染,点击改变样式

作者: Kason晨 | 来源:发表于2019-05-14 19:42 被阅读0次

    废话少说直接上代码:

    这是html模板
    <template>
      <div class="hello">
        <ul>
          <li 
          v-for="(list, index) in list"
          :class="{'active':ind === index}"
          @click="changeBgc(index)">{{list}}</li>
        </ul>
      </div>
    </template>
    

    js部分

    data () {
        return {
          list: ['苹果', '香蕉', '菠萝', '芒果'],
          ind: ''
        }
      },
      methods: {
        changeBgc: function (index) {
          this.ind = index
        }
      }
    

    css部分自己写一下选中的样式就好

    相关文章

      网友评论

          本文标题:2019-05-14Vue列表渲染,点击改变样式

          本文链接:https://www.haomeiwen.com/subject/amgeaqtx.html