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

19 lines
257 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>