forked from epicmaxco/vuestic-admin
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request epicmaxco#266 from vlad-shusterman/simple-select-u…
…nselect simple-select and multi-select improvements
- Loading branch information
Showing
4 changed files
with
336 additions
and
208 deletions.
There are no files selected for viewing
36 changes: 36 additions & 0 deletions
36
src/vuestic-theme/vuestic-components/vuestic-multi-select/VuesticMultiSelect.demo.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<template> | ||
<div class="demo-container"> | ||
<div class="demo-container__item"> | ||
<vuestic-multi-select | ||
label="Select country" | ||
v-model="selectedCountries" | ||
:options="CountriesList" | ||
/> | ||
</div> | ||
<div class="demo-container__item"> | ||
<vuestic-multi-select | ||
label="Select country duplicate" | ||
v-model="selectedCountries" | ||
:options="CountriesList" | ||
/> | ||
</div> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import CountriesList from 'data/CountriesList' | ||
import VuesticMultiSelect from './VuesticMultiSelect' | ||
export default { | ||
components: { | ||
VuesticMultiSelect, | ||
}, | ||
data () { | ||
return { | ||
selectedCountries: [], | ||
CountriesList, | ||
} | ||
}, | ||
} | ||
</script> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
28 changes: 15 additions & 13 deletions
28
src/vuestic-theme/vuestic-components/vuestic-simple-select/VuesticSimpleSelect.demo.vue
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.