mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
3c43a1cdd1
Co-authored-by: renovate[bot] <29139614+renovate[bot]@users.noreply.github.com> Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
32 lines
652 B
Vue
32 lines
652 B
Vue
<script setup lang="ts">
|
|
import { InjectionKeyDropdownContext } from '~/constants/symbols'
|
|
|
|
defineProps<{
|
|
placement?: string
|
|
autoBoundaryMaxSize?: boolean
|
|
}>()
|
|
|
|
const dropdown = $ref<any>()
|
|
const colorMode = useColorMode()
|
|
|
|
function hide() {
|
|
return dropdown.hide()
|
|
}
|
|
provide(InjectionKeyDropdownContext, {
|
|
hide,
|
|
})
|
|
|
|
defineExpose({
|
|
hide,
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VDropdown v-bind="$attrs" ref="dropdown" :class="colorMode.value" :placement="placement || 'auto'" :auto-boundary-max-size="autoBoundaryMaxSize">
|
|
<slot />
|
|
<template #popper="scope">
|
|
<slot name="popper" v-bind="scope" />
|
|
</template>
|
|
</VDropdown>
|
|
</template>
|