2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-10 07:52:23 +03:00
Files
vue-select/docs/.vuepress/components/CountrySelect.vue
T
2021-08-01 12:30:50 -07:00

17 lines
253 B
Vue

<template>
<v-select :options="options"></v-select>
</template>
<script>
import countryCodes from '../data/countryCodes'
export default {
name: 'CountrySelect',
data: () => ({
options: countryCodes,
}),
}
</script>
<style scoped></style>