We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 65a8369 commit b0a1dbbCopy full SHA for b0a1dbb
docs/demo/single-select.md
@@ -14,14 +14,16 @@ import VueSelect from "../../src";
14
const selected = ref("");
15
</script>
16
17
-<VueSelect
18
- v-model="selected"
19
- :options="[
20
- { label: 'Option #1', value: 'option_1' },
21
- { label: 'Option #2', value: 'option_2' },
22
- { label: 'Option #3', value: 'option_3' },
23
- ]"
24
-/>
+<ClientOnly>
+ <VueSelect
+ v-model="selected"
+ :options="[
+ { label: 'Option #1', value: 'option_1' },
+ { label: 'Option #2', value: 'option_2' },
+ { label: 'Option #3', value: 'option_3' },
+ ]"
25
+ />
26
+</ClientOnly>
27
28
Selected value: **{{ selected || "none" }}**
29
0 commit comments