mirror of
https://github.com/element-plus/element-plus.git
synced 2024-12-03 02:21:49 +08:00
23 lines
680 B
TypeScript
23 lines
680 B
TypeScript
import type { TabPaneProps, TabsProps } from '@element-plus/components/tabs'
|
|
import type { ComputedRef, InjectionKey, Ref, Slots, UnwrapRef } from 'vue'
|
|
|
|
export type TabsPaneContext = UnwrapRef<{
|
|
uid: number
|
|
slots: Slots
|
|
props: TabPaneProps
|
|
paneName: ComputedRef<string | number | undefined>
|
|
active: ComputedRef<boolean>
|
|
index: Ref<string | undefined>
|
|
isClosable: ComputedRef<boolean>
|
|
}>
|
|
|
|
export interface TabsRootContext {
|
|
props: TabsProps
|
|
currentName: Ref<string | number>
|
|
registerPane: (pane: TabsPaneContext) => void
|
|
unregisterPane: (uid: number) => void
|
|
}
|
|
|
|
export const tabsRootContextKey: InjectionKey<TabsRootContext> =
|
|
Symbol('tabsRootContextKey')
|