FurBall/uni_modules/tuniaoui-vue3/tokens/form.ts

8 lines
287 B
TypeScript

import type { InjectionKey } from 'vue'
import type { FormContext, FormItemContext } from '../components'
export const formContextKey: InjectionKey<FormContext> =
Symbol('formContextKey')
export const formItemContextKey: InjectionKey<FormItemContext> =
Symbol('formItemContextKey')