Skip to content

Selects

georgeMuraveiAlkh edited this page Oct 19, 2017 · 15 revisions

Simple select

<vuestic-simple-select
    label="Simple select"
    v-model="simpleSelectModel"
    v-bind:options="simpleOptions">
</vuestic-simple-select>

label: String // Label of your Select
v-model: String // Model of your select
options: String[] // Array of options which shows in dropdown

Mutliselect

<vuestic-multi-select
     label="Mutliselect"
     v-model="multiSelectModel"
     v-bind:options="simpleOptions">
</vuestic-multi-select>

label: String -- Label of your Select
v-model: String[] -- Model of your select
options: String[] -- Array of options which shows in dropdown

Clone this wiki locally