elk/components/common/dropdown/Dropdown.vue

22 lines
460 B
Vue
Raw Normal View History

2022-11-24 08:34:05 +00:00
<script setup lang="ts">
import { dropdownContextKey } from './ctx'
defineProps<{
placement?: string
}>()
2022-11-24 08:34:05 +00:00
const dropdown = $ref<any>()
provide(dropdownContextKey, {
hide: () => dropdown.hide(),
})
</script>
<template>
<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>