8 lines
287 B
TypeScript
Raw Normal View History

2024-11-05 10:14:41 +08:00
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')