2
0
mirror of https://github.com/tenrok/vue-select.git synced 2026-06-07 07:12:23 +03:00
Files
vue-select/docs/components/CountrySelect.vue
T
2021-07-28 09:46:15 -07:00

19 lines
260 B
Vue

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