2024-11-05 10:09:18 +08:00

18 lines
435 B
TypeScript

import type { InjectionKey } from 'vue'
import type { StepsProps } from '../components/steps'
export type StepContext = {
uid: number
}
export type StepsContext = StepsProps & {
items: StepContext[]
activeUidList: number[]
addItem: (item: StepContext) => void
removeItem: (uid: number) => void
setActiveItem: (uid: number) => void
}
export const stepsContextKey: InjectionKey<StepsContext> =
Symbol('stepsContextKey')