UNPKG

@shopware-ag/meteor-component-library

Version:

The meteor component library is a Vue component library developed by Shopware. It is based on the [Meteor Design System](https://shopware.design/).

8 lines (5 loc) 213 B
import { inject, type InjectionKey } from "vue"; export const TooltipContext = Symbol("TooltipContext") as InjectionKey<boolean>; export function useIsInsideTooltip() { return inject(TooltipContext, false); }