[Vuejs]-How to get the item-value attribute value from Vuetify VAutocomplete? VueJS

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)
        },
    },

Leave a comment