Vuetify Select With Text And Value

[Solved] Vuetify Select With Text And Value | Vb - Code Explorer | yomemimo.com
Question : vuetify use selected value

Answered by : philani-sithembiso-ndhlela

new Vue({ el: '#app', data: () => ({ items: [ {value: '1', bankName: 'Bank1'}, {value: '2', bankName: 'Bank2'}, ], selectedBank: null }), methods: { directToBank() { console.log("Label: ", this.selectedBank.bankName) console.log("Value: ", this.selectedBank.value) } }
})

Source : https://stackoverflow.com/questions/51962953/how-to-get-selected-value-from-dropdown-in-vuejs | Last Update : Tue, 09 Feb 21

Answers related to vuetify select with text and value

Code Explorer Popular Question For Vb