mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-02 23:19:57 +00:00
cbd5867275
Co-authored-by: 三咲智子 Kevin Deng <sxzz@sxzz.moe>
22 lines
460 B
Vue
22 lines
460 B
Vue
<script setup lang="ts">
|
|
import { dropdownContextKey } from './ctx'
|
|
defineProps<{
|
|
placement?: string
|
|
}>()
|
|
|
|
const dropdown = $ref<any>()
|
|
|
|
provide(dropdownContextKey, {
|
|
hide: () => dropdown.hide(),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VDropdown v-bind="$attrs" ref="dropdown" :class="{ dark: isDark }" :placement="placement || 'auto'">
|
|
<slot />
|
|
<template #popper="scope">
|
|
<slot name="popper" v-bind="scope" />
|
|
</template>
|
|
</VDropdown>
|
|
</template>
|