mirror of https://github.com/elk-zone/elk.git
19 lines
387 B
Vue
19 lines
387 B
Vue
<script setup lang="ts">
|
|
import { dropdownContextKey } from './ctx'
|
|
|
|
const dropdown = $ref<any>()
|
|
|
|
provide(dropdownContextKey, {
|
|
hide: () => dropdown.hide(),
|
|
})
|
|
</script>
|
|
|
|
<template>
|
|
<VDropdown v-bind="$attrs" ref="dropdown" :class="{ dark: isDark }">
|
|
<slot />
|
|
<template #popper="scope">
|
|
<slot name="popper" v-bind="scope" />
|
|
</template>
|
|
</VDropdown>
|
|
</template>
|