vuestic-ui
Version:
Vue 3 UI Framework
8 lines (7 loc) • 311 B
TypeScript
/**
* App context must be used as computed to support single app mode.
*
* Single app mode allows user to use composables as useColor, useToast, etc. outside of vue app.
* (for example in api.ts)
*/
export declare const useAppContext: () => import("vue").ComputedRef<import("vue").AppContext | undefined>;