加载q-select时如何preselect选项?
How do you preselect the options when loading the q-select?
我是 vue 和 quasar 的新手,所以我还没有这样做。我正在构建编辑记录的能力,我希望能够预先 select q-select 元素的选项。预 selected 选项是用户在首次创建记录时保存的内容。目前我有:
<q-select
v-model="products"
label="Products *"
:options="products"
option-label="title"
option-value="id"
multiple
use-chips
:rules="[val => val || 'A product is required']"
/>
Chris,您只需根据您的情况设置模型值 products
即可。
例子-
model: 'Twitter',
options: [
'Google', 'Facebook', 'Twitter', 'Apple', 'Oracle'
]
我是 vue 和 quasar 的新手,所以我还没有这样做。我正在构建编辑记录的能力,我希望能够预先 select q-select 元素的选项。预 selected 选项是用户在首次创建记录时保存的内容。目前我有:
<q-select
v-model="products"
label="Products *"
:options="products"
option-label="title"
option-value="id"
multiple
use-chips
:rules="[val => val || 'A product is required']"
/>
Chris,您只需根据您的情况设置模型值 products
即可。
例子-
model: 'Twitter',
options: [
'Google', 'Facebook', 'Twitter', 'Apple', 'Oracle'
]