vue如何切换样式?

比如
有三个按钮

button1.current button2.current button3.current

默认高亮button1,点击之后切换

在data写了个数组 [true, false, false]

click的method里传个index,@click="a(index)" button是循环出来的

用传入index来进行数组切换,this.array[index] = true

重新赋值后,dom没更新...


米脂
浏览 1175回答 1
1回答

慕仙森

this.array[index] = true是无法被检查到,具体看数组更新检测
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript