1
変数を使ってプロパティに動的にアクセスしたいと思います。例えばVueJS - これに変数を渡してください。{variable}
、私が持っている:
data(){
redsection : '',
bluesection : '',
},
methods(){
changeColor(color, val){
this.{color+"section"} = val;
}
}
そして私はビューの機能を持って、それをやろうとしている:
<button @click="changeColor("blue", "bar")>blue</button>
<button @click="changeColor("red", "bar")>blue</button>