2022-11-24 08:34:05 +00:00
|
|
|
<script setup lang="ts">
|
2023-01-03 11:58:08 +00:00
|
|
|
import { InjectionKeyDropdownContext } from '~/constants/symbols'
|
|
|
|
|
2022-12-04 14:17:02 +00:00
|
|
|
defineProps<{
|
|
|
|
placement?: string
|
2023-01-03 12:17:04 +00:00
|
|
|
autoBoundaryMaxSize?: boolean
|
2022-12-04 14:17:02 +00:00
|
|
|
}>()
|
2022-11-24 08:34:05 +00:00
|
|
|
|
2024-02-21 15:20:08 +00:00
|
|
|
const dropdown = ref<any>()
|
2022-12-29 12:26:08 +00:00
|
|
|
const colorMode = useColorMode()
|
2022-11-24 08:34:05 +00:00
|
|
|
|
2023-03-30 19:01:24 +00:00
|
|
|
function hide() {
|
2024-02-21 15:20:08 +00:00
|
|
|
return dropdown.value.hide()
|
2023-03-30 19:01:24 +00:00
|
|
|
}
|
2023-01-03 11:58:08 +00:00
|
|
|
provide(InjectionKeyDropdownContext, {
|
2023-01-02 21:09:15 +00:00
|
|
|
hide,
|
|
|
|
})
|
|
|
|
|
|
|
|
defineExpose({
|
|
|
|
hide,
|
2022-11-24 08:34:05 +00:00
|
|
|
})
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2023-01-03 12:17:04 +00:00
|
|
|
<VDropdown v-bind="$attrs" ref="dropdown" :class="colorMode.value" :placement="placement || 'auto'" :auto-boundary-max-size="autoBoundaryMaxSize">
|
2022-11-24 08:34:05 +00:00
|
|
|
<slot />
|
|
|
|
<template #popper="scope">
|
|
|
|
<slot name="popper" v-bind="scope" />
|
|
|
|
</template>
|
|
|
|
</VDropdown>
|
|
|
|
</template>
|