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

Added a default v-select to the dev page

- so I could test the behaviour of a searchable single select
This commit is contained in:
Brandon Bey
2017-03-31 12:30:19 -07:00
parent 5271ed7c70
commit 536606e0fa
+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>