2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-16 09:10:33 +03:00
Files
vue-select/docs/.vuepress/components/TranslationSingleKey.vue
2021-08-01 19:37:31 -07:00

17 lines
272 B
Vue

<template>
<v-select :locale="locale" :option="['one', 'two', 'three']" />
</template>
<script>
export default {
computed: {
locale() {
return (text) => ({
...text,
noOptions: { text: 'No Options found!!' },
})
},
},
}
</script>