UNPKG

birdpaper-ui

Version:

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

9 lines (8 loc) 275 B
import { InjectionKey } from "vue"; /** 表单布局方式 */ export declare type FormLayout = "vertical" | "horizontal" | "inline"; export interface FormContext { model: object; layout: FormLayout; } export declare const FormInjectionKey: InjectionKey<FormContext>;