mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-07 07:12:23 +03:00
19 lines
260 B
Vue
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>
|