mirror of
https://github.com/tenrok/vue-select.git
synced 2026-06-16 09:10:33 +03:00
22 lines
404 B
Vue
22 lines
404 B
Vue
<template>
|
|
<div>
|
|
<v-select
|
|
multiple
|
|
v-model="selected"
|
|
:options="['Canada', 'United States']"
|
|
:components="{OpenIndicator}"
|
|
/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
data: () => ({
|
|
selected: ['Canada'],
|
|
OpenIndicator: {
|
|
render: createElement => createElement('span', {class: {'toggle': true}}),
|
|
},
|
|
}),
|
|
};
|
|
</script>
|