mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-20 03:09:36 +03:00
17 lines
265 B
Vue
17 lines
265 B
Vue
<template>
|
|
<v-select :options="options"></v-select>
|
|
</template>
|
|
|
|
<script>
|
|
import countryCodes from "../assets/data/countryCodes.js";
|
|
|
|
export default {
|
|
name: "CountrySelect",
|
|
data: () => ({
|
|
options: countryCodes,
|
|
}),
|
|
};
|
|
</script>
|
|
|
|
<style scoped></style>
|