UNPKG

@oiij/naive-ui

Version:

Some Composable Functions And Components for Vue 3

10 lines (8 loc) 265 B
import { loadingProviderInjectionKey } from "../components/loading-provider/index.js"; import { inject } from "vue"; //#region src/composables/useLoading.ts function useLoading() { return inject(loadingProviderInjectionKey); } //#endregion export { useLoading };