绿色背景颜色效果为啥没出来???

来源:4-2 单页面应用Demo1

qq_天会亮心会暧_0

2019-04-17 11:54

<template>
  <ul>
     <li v-for="(item,index) in lists"
         @click="choose(index)"
         :class="{active:index==current}"
         :key="index">
      {{item}}
    </li>
  </ul>
</template>

<script>
  export default {
    name:"demo1",
    data() {
      return {
        lists: [1, 2, 3, 4, 5, 6, 7, 8, 9]
      }
    },
    methods: {
      choose(index){
        console.log(index)
      }
    }
  }
</script>

<style scoped>
li.active{
  background: green;
}
</style>


写回答 关注

1回答

  • qq_天会亮心会暧_0
    2019-04-17 15:34:06

    原来是少写了个

    current:''

    0.0

3小时速成 Vue2.x 核心技术

带你快速学习最流行的前端框架vue2.x的核心技术

82574 学习 · 489 问题

查看课程

相似问题