2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-07 07:12:23 +03:00

Merge pull request #171 from fidgetwidget/non-multiple-improvements

Added features to non multiple selects
This commit is contained in:
Jeff
2017-04-24 11:23:34 -07:00
committed by GitHub
3 changed files with 81 additions and 0 deletions
+1
View File
@@ -31,6 +31,7 @@
<body>
<div id="app">
<v-select placeholder="default" :options="options"></v-select>
<v-select placeholder="multiple" multiple :options="options"></v-select>
<v-select placeholder="multiple, taggable" multiple taggable :options="options" no-drop></v-select>
<v-select placeholder="multiple, taggable, push-tags" multiple push-tags taggable :options="[{label: 'Foo', value: 'foo'}]"></v-select>