mirror of
https://github.com/tenrok/vue-select.git
synced 2026-05-20 03:09:36 +03:00
19 lines
307 B
Vue
19 lines
307 B
Vue
<template>
|
|
<div>
|
|
<v-select
|
|
:options="['Canada', 'United States']"
|
|
:components="{OpenIndicator}"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
OpenIndicator: {
|
|
render: createElement => createElement('span', '🔽'),
|
|
},
|
|
}),
|
|
};
|
|
</script>
|