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.
Vuestic select enhancements (epicmaxco#233)
* fix vertical scrollbar * set minimal height to thumb * change style to vue * test * auto scroll when typing first letters(Test version). * prepare * demo * fix disappear items * unbind * initial commit * remove listeners * add logic to simple select * refactor logic * fix bug with dissapeared dropdown * problem with select item * working variant. non-working unbind and some other dropdowns * working variant * working select + demo * refactor logic[1] * computed sort * last refactor * refactor demo. * fix reactive problem * fix dissapearing value * non-reactive * Minor * Minor * fix setup profile tab * fix setup profile tab [1] * final refactor * delete useless dependency * unused variable * style refactor * remove useless getter
- Loading branch information
1 parent
aba0def
commit 75eb986
Showing
6 changed files
with
180 additions
and
78 deletions.
There are no files selected for viewing
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
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 |
---|---|---|
|
@@ -21,6 +21,6 @@ export default { | |
} | ||
prevMatchlg = getWindowMatch() | ||
}) | ||
} | ||
}, | ||
} | ||
|
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
34 changes: 34 additions & 0 deletions
34
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,34 @@ | ||
<template> | ||
<div class="row justify-content-around"> | ||
<vuestic-simple-select | ||
style="width: 240px; padding-top: 400px" | ||
label="Select country" | ||
v-model="selectedCountry" | ||
:options="CountriesList" | ||
/> | ||
<vuestic-simple-select | ||
style="width: 240px" | ||
label="Select country duplicate" | ||
v-model="selectedCountry" | ||
:options="CountriesList" | ||
/> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import CountriesList from 'data/CountriesList' | ||
import VuesticSimpleSelect from './VuesticSimpleSelect' | ||
export default { | ||
components: { | ||
VuesticSimpleSelect, | ||
}, | ||
data () { | ||
return { | ||
selectedCountry: '', | ||
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
Oops, something went wrong.