shadcn-vue/packages/radix-vue/src/components/Select/SelectContent.vue
2023-06-23 15:45:12 +08:00

12 lines
283 B
Vue

<template>
<ListboxOptions
class="w-full min-w-[8rem] overflow-hidden rounded-md border bg-popover text-popover-foreground shadow-md p-1 focus:outline-none">
<slot />
</ListboxOptions>
</template>
<script setup>
import {
ListboxOptions,
} from '@headlessui/vue'
</script>