Using Select Component @change event not triggered v0.17.14
-
Hi i am having a problem using quasar select i tried to put
@change
method but its not working what should i do? please help me thank you! but in @input its working… is this still an issue? or something?<q-select v-model="sale.product" float-label="Select Product" :options="productOptions" @change="setSelectedProductInfo()"/>
methods () { setSelectedProductInfo() { console.log('triggered') let vm = this var product = _.find(vm.products, ['_id', vm.sale.product]) vm.selectedProduct = product }, ...
-
-
Also, this is a good example to use a watched property for v-model.
Scott