UNPKG

@meleon/uni-ui

Version:

A uniapp components library written in vue3 and typescript

10 lines (9 loc) 336 B
import type { InjectionKey } from 'vue'; import type { FormItemEventHandler } from './index.interface'; export interface FormItemContext { eventsHanlder: FormItemEventHandler; disabled: boolean; isError: boolean; } declare const formItemInjectionKey: InjectionKey<FormItemContext>; export { formItemInjectionKey };