mirror of
https://github.com/ArthurDanjou/ui.git
synced 2026-01-14 12:14:41 +01:00
Co-authored-by: Daniel Roe <daniel@roe.dev> Co-authored-by: Sébastien Chopin <seb@nuxt.com>
27 lines
619 B
Vue
27 lines
619 B
Vue
<script setup>
|
|
const people = [
|
|
{ id: 1, label: 'Wade Cooper' },
|
|
{ id: 2, label: 'Arlene Mccoy' },
|
|
{ id: 3, label: 'Devon Webb' },
|
|
{ id: 4, label: 'Tom Cook' },
|
|
{ id: 5, label: 'Tanya Fox' },
|
|
{ id: 6, label: 'Hellen Schmidt' },
|
|
{ id: 7, label: 'Caroline Schultz' },
|
|
{ id: 8, label: 'Mason Heaney' },
|
|
{ id: 9, label: 'Claudie Smitham' },
|
|
{ id: 10, label: 'Emil Schaefer' }
|
|
]
|
|
|
|
const selected = ref([people[3]])
|
|
</script>
|
|
|
|
<template>
|
|
<UCommandPalette
|
|
v-model="selected"
|
|
multiple
|
|
nullable
|
|
:groups="[{ key: 'people', commands: people }]"
|
|
:fuse="{ resultLimit: 6 }"
|
|
/>
|
|
</template>
|