elk/composables/injections.ts

10 wiersze
263 B
TypeScript
Czysty Zwykły widok Historia

2023-01-03 11:58:08 +00:00
import { InjectionKeyDropdownContext, InjectionKeyFontSize } from '~/constants/symbols'
export function useFontSizeRef() {
return inject(InjectionKeyFontSize)!
}
2023-01-03 11:58:08 +00:00
export function useDropdownContext() {
return inject(InjectionKeyDropdownContext, undefined)
}