mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-19 09:50:33 +03:00
18 lines
338 B
Vue
18 lines
338 B
Vue
<template>
|
|
<SpanishSelect :options="['uno', 'dos', 'tres', 'cuatro']" />
|
|
</template>
|
|
|
|
<script>
|
|
import SpanishSelect from 'vue-select'
|
|
import { locale as spanish } from 'vue-select/locales/es.js'
|
|
|
|
SpanishSelect.props.locale = {
|
|
type: Function,
|
|
default: () => spanish,
|
|
}
|
|
|
|
export default {
|
|
components: { SpanishSelect },
|
|
}
|
|
</script>
|