[Solved] Missing required prop: "value" found in ---> <QSelect>
-
I have this q-select
<q-select :options="logLevels" option-value="id" option-label="level" emit-value options-dense label="Select log level" @input="getLogFile" />
and data:
logLevels: [ { id: 0, level: 'Information' }, { id: 1, level: 'Warnings and Errors' } ],
and getting Vue-warning: “Missing required prop: “value” found in —> <QSelect>”.
Any hints appreciated.I am using
Pkg quasar… v1.0.0-rc.4
Pkg @quasar/app… v1.0.0-rc.6 -
@valasek
v-model
missing. -
Or the
value
prop.Scott
-
Thank you fixed using v-model option.