mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-26 19:27:03 +03:00
18 lines
387 B
Vue
18 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>
|