UNPKG

birdpaper-ui

Version:

一个通用的 vue3 UI组件库。A common vue3 UI component library.

9 lines (8 loc) 276 B
import { InjectionKey } from "vue"; export interface TimePickerContext { /** 绑定值 */ modelValue: string; /** 选择后触发 */ onSelect: (value: string, payload?: object) => void; } export declare const timeInjectionKey: InjectionKey<TimePickerContext>;