0👍
The selected value is in the v-model="selectAcc"
use console.log in this part of your code to test the selected object
watch: {
searchAcc (val) {
val && val !== this.selectAcc && this.querySelections(val)
console.log(this.selectACC)
},
},
- [Vuejs]-Content security policy to be added in vuejs
- [Vuejs]-How to solve VueJS calculator working once?
Source:stackexchange.com