mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-14 17:31:02 +08:00
9 lines
204 B
TypeScript
9 lines
204 B
TypeScript
|
import type { InjectionKey, SetupContext } from 'vue'
|
||
|
|
||
|
interface DatePickerContext {
|
||
|
slots: SetupContext['slots']
|
||
|
}
|
||
|
|
||
|
export const ROOT_PICKER_INJECTION_KEY: InjectionKey<DatePickerContext> =
|
||
|
Symbol()
|