mirror of
https://gitee.com/element-plus/element-plus.git
synced 2024-12-02 19:28:14 +08:00
d5e586b51b
* feat: tabpane name support number type * fix: update
29 lines
733 B
TypeScript
29 lines
733 B
TypeScript
import type { TabsProps, TabPaneProps } from '@element-plus/components/tabs'
|
|
import type {
|
|
ComponentInternalInstance,
|
|
ComputedRef,
|
|
Ref,
|
|
InjectionKey,
|
|
UnwrapRef,
|
|
ShallowReactive,
|
|
} from 'vue'
|
|
|
|
export type TabsPaneContext = UnwrapRef<{
|
|
uid: number
|
|
instance: ShallowReactive<ComponentInternalInstance>
|
|
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>
|
|
updatePaneState: (pane: TabsPaneContext) => void
|
|
}
|
|
|
|
export const tabsRootContextKey: InjectionKey<TabsRootContext> =
|
|
Symbol('tabsRootContextKey')
|