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 2ecad84 commit 503cfb0Copy full SHA for 503cfb0
dev/Dev.vue
@@ -1,9 +1,7 @@
1
<template>
2
<div id="app">
3
- <sandbox hide-help>
4
- <template slot-scope="config">
5
- <v-select v-model="value" v-bind="config" />
6
- </template>
+ <sandbox hide-help v-slot="config">
+ <v-select v-bind="config" />
7
</sandbox>
8
</div>
9
</template>
docs/.vuepress/components/Sandbox.vue
@@ -179,7 +179,7 @@ const defaultConfig = () => ({
179
closeOnSelect: true,
180
disabled: false,
181
selectOntab: false,
182
- placeholder: 'placeholder',
+ placeholder: 'Select a Country...',
183
});
184
185
export default {
0 commit comments