8 lines
287 B
TypeScript
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')
|