mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-03 07:29:59 +00:00
19 lines
361 B
Vue
19 lines
361 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">
|
|
<slot />
|
|
<template #popper="scope">
|
|
<slot name="popper" v-bind="scope" />
|
|
</template>
|
|
</VDropdown>
|
|
</template>
|