-
Notifications
You must be signed in to change notification settings - Fork 22
Vuetify: MultiSelectComponent
Mike Lyttle edited this page Jul 5, 2023
·
1 revision
- Swap
<MultiSelectComponent
for<v-select>
. - Swap
:values
and@update:values
props forv-model
. - Swap
:options
prop for:items
. - Swap
placeholder
prop forhint
.- Optionally, apply the
persistent-hint
prop.
- Optionally, apply the
- Populate
label
prop to identify the field. - Apply the
multiple
,chips
,closable-chips
, andhide-selected
props to imitate<MultiSelectComponent>
behaviour. - Apply the
eager
prop to improve performance with a large number of items.
<v-select
v-model="selectedMedicationOptions"
:items="medicationOptions"
label="Medications"
hint="Choose medications"
persistent-hint
multiple
chips
closable-chips
hide-selected
eager
/>
-
Developer Standard and Processes
-
Workstation Setup
-
IDE Configuration
-
Application Config
-
RedHat SSO Authorization Server
-
Known Issues