6 lines
161 B
TypeScript
6 lines
161 B
TypeScript
import type { InjectionKey } from 'vue'
|
|
import type { TabsContext } from './types'
|
|
|
|
export const tabsContextKey: InjectionKey<TabsContext>
|
|
= Symbol('UI_TABS')
|