Disable q-select option
-
hello everyone
i have one <q-select> with array options
how can i adddisable: true
orinactive:true
option valuemy_array_options { "Color" : ["Black", "White", "Blue"], "Storage Capacity": ["32GB", "64GB"] }
<q-select v-for="(items, index) in my_array_options" :key="index" v-model="selected[index]" :prefix="index + ' :'" :options="my_array_options[index]" />
my select
i want
-
@abdulakhad use an object array same as the exanple in the docs.
-
Can’t it be used in this case?