UNPKG

@arco-design/web-vue

Version:

Arco Design Vue 2.0: A Vue.js 3 UI Library

7 lines (6 loc) 287 B
import { InjectionKey } from 'vue'; export interface DropdownContext { popupMaxHeight: boolean | number; onOptionClick: (value: string | number | Record<string, unknown> | undefined, ev: Event) => void; } export declare const dropdownInjectionKey: InjectionKey<DropdownContext>;