2022-11-24 08:34:05 +00:00
|
|
|
<script setup lang="ts">
|
|
|
|
import { dropdownContextKey } from './ctx'
|
2022-12-04 14:17:02 +00:00
|
|
|
defineProps<{
|
|
|
|
placement?: string
|
|
|
|
}>()
|
2022-11-24 08:34:05 +00:00
|
|
|
|
|
|
|
const dropdown = $ref<any>()
|
|
|
|
|
|
|
|
provide(dropdownContextKey, {
|
|
|
|
hide: () => dropdown.hide(),
|
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2022-12-04 14:17:02 +00:00
|
|
|
<VDropdown v-bind="$attrs" ref="dropdown" :class="{ dark: isDark }" :placement="placement || 'auto'">
|
2022-11-24 08:34:05 +00:00
|
|
|
<slot />
|
|
|
|
<template #popper="scope">
|
|
|
|
<slot name="popper" v-bind="scope" />
|
|
|
|
</template>
|
|
|
|
</VDropdown>
|
|
|
|
</template>
|