mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-21 07:21:46 +01:00
22 lines
486 B
Vue
22 lines
486 B
Vue
<script setup lang="ts">
|
|
const people = ['Wade Cooper', 'Arlene Mccoy', 'Devon Webb', 'Tom Cook', 'Tanya Fox', 'Hellen Schmidt', 'Caroline Schultz', 'Mason Heaney', 'Claudie Smitham', 'Emil Schaefer']
|
|
|
|
const selected = ref()
|
|
|
|
const handleClose = () => {
|
|
}
|
|
</script>
|
|
|
|
<template>
|
|
<UContainer>
|
|
<USelectMenu
|
|
v-model="selected"
|
|
multiple
|
|
clearable
|
|
:options="people"
|
|
placeholder="Select people"
|
|
@clear="handleClose"
|
|
/>
|
|
</UContainer>
|
|
</template>
|