加上function就可以正常运行了
methods: {
getindex(e) {
this.list[e].show = true
}
},
methods: {
getindex: function (e) {
this.list[e].show = true
}
},
加上function就可以正常运行了
methods: {
getindex(e) {
this.list[e].show = true
}
},
methods: {
getindex: function (e) {
this.list[e].show = true
}
},