As shown in the picture, I want to push a value after selecting it. How should I do it? Thank you
滿天的星座2017-05-19 10:31:59
js
new Vue({
el: "#app",
data: {
myCheck: '',
//用来存放每一次点击的value
arr: []
},
watch: {
myCheck: function () {
this.arr.push(this.myCheck)
}
}
})
What does this mean? ? Every time you click, the value after the click is saved