vue中for循环的class绑定事件

  • {{item.MALL_CATEGORY_NAME}}
      data() {
            return {
                categoryIndex : 0,
            }
        },
        methods: {
            clickCategory(index){
                this.categoryIndex = index;
            }
        },
.categoryActive{
    background: #fff;
}

你可能感兴趣的:(vue中for循环的class绑定事件)