6 lines
177 B
TypeScript
6 lines
177 B
TypeScript
import type { InjectionKey } from 'vue'
|
|
import type { DropdownContext } from './types'
|
|
|
|
export const dropdownContextKey: InjectionKey<DropdownContext>
|
|
= Symbol('UI_DROPDOWN')
|