UNPKG

@mozaic-ds/vue

Version:

Mozaic-Vue is the Vue.js implementation of ADEO Design system

10 lines (7 loc) 256 B
import type { InjectionKey, WritableComputedRef } from 'vue'; export const AccordionStateKey = Symbol() as InjectionKey< WritableComputedRef<string[], string[]> >; export const AccordionToggleFnKey = Symbol() as InjectionKey< (id: string) => void >;