UNPKG

@layui/layui-vue

Version:

a component library for Vue 3 base on layui-vue

8 lines (7 loc) 284 B
import type { InjectionKey, Ref } from "vue"; import type { TabEmits, TabProps } from "./interface"; export interface LayTabContextType { emits: TabEmits; modelValue: Ref<TabProps["modelValue"]>; } export declare const LAY_TAB_CONTEXT: InjectionKey<LayTabContextType>;