mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
17 lines
272 B
Vue
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>
|