mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-13 08:32:26 +03:00
17 lines
253 B
Vue
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>
|