Add Loader
This commit is contained in:
parent
1e7a183668
commit
a3da5c9d55
5 changed files with 83 additions and 1 deletions
2
Frontend-Learner/.nuxt/components.d.ts
vendored
2
Frontend-Learner/.nuxt/components.d.ts
vendored
|
|
@ -16,6 +16,7 @@ type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {},
|
|||
|
||||
export const AppHeader: typeof import("../components/common/AppHeader.vue").default
|
||||
export const FormInput: typeof import("../components/common/FormInput.vue").default
|
||||
export const GlobalLoader: typeof import("../components/common/GlobalLoader.vue").default
|
||||
export const LandingFooter: typeof import("../components/common/LandingFooter.vue").default
|
||||
export const LandingHeader: typeof import("../components/common/LandingHeader.vue").default
|
||||
export const LoadingSkeleton: typeof import("../components/common/LoadingSkeleton.vue").default
|
||||
|
|
@ -172,6 +173,7 @@ export const Body: typeof import("../node_modules/nuxt/dist/head/runtime/compone
|
|||
export const NuxtIsland: typeof import("../node_modules/nuxt/dist/app/components/nuxt-island").default
|
||||
export const LazyAppHeader: LazyComponent<typeof import("../components/common/AppHeader.vue").default>
|
||||
export const LazyFormInput: LazyComponent<typeof import("../components/common/FormInput.vue").default>
|
||||
export const LazyGlobalLoader: LazyComponent<typeof import("../components/common/GlobalLoader.vue").default>
|
||||
export const LazyLandingFooter: LazyComponent<typeof import("../components/common/LandingFooter.vue").default>
|
||||
export const LazyLandingHeader: LazyComponent<typeof import("../components/common/LandingHeader.vue").default>
|
||||
export const LazyLoadingSkeleton: LazyComponent<typeof import("../components/common/LoadingSkeleton.vue").default>
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
// generated by the @nuxtjs/tailwindcss <https://github.com/nuxt-modules/tailwindcss> module at 13/1/2569 11:39:33
|
||||
// generated by the @nuxtjs/tailwindcss <https://github.com/nuxt-modules/tailwindcss> module at 13/1/2569 11:47:48
|
||||
import "@nuxtjs/tailwindcss/config-ctx"
|
||||
import configMerger from "@nuxtjs/tailwindcss/merger";
|
||||
|
||||
|
|
|
|||
2
Frontend-Learner/.nuxt/types/components.d.ts
vendored
2
Frontend-Learner/.nuxt/types/components.d.ts
vendored
|
|
@ -16,6 +16,7 @@ type LazyComponent<T> = DefineComponent<HydrationStrategies, {}, {}, {}, {}, {},
|
|||
interface _GlobalComponents {
|
||||
'AppHeader': typeof import("../../components/common/AppHeader.vue").default
|
||||
'FormInput': typeof import("../../components/common/FormInput.vue").default
|
||||
'GlobalLoader': typeof import("../../components/common/GlobalLoader.vue").default
|
||||
'LandingFooter': typeof import("../../components/common/LandingFooter.vue").default
|
||||
'LandingHeader': typeof import("../../components/common/LandingHeader.vue").default
|
||||
'LoadingSkeleton': typeof import("../../components/common/LoadingSkeleton.vue").default
|
||||
|
|
@ -172,6 +173,7 @@ interface _GlobalComponents {
|
|||
'NuxtIsland': typeof import("../../node_modules/nuxt/dist/app/components/nuxt-island").default
|
||||
'LazyAppHeader': LazyComponent<typeof import("../../components/common/AppHeader.vue").default>
|
||||
'LazyFormInput': LazyComponent<typeof import("../../components/common/FormInput.vue").default>
|
||||
'LazyGlobalLoader': LazyComponent<typeof import("../../components/common/GlobalLoader.vue").default>
|
||||
'LazyLandingFooter': LazyComponent<typeof import("../../components/common/LandingFooter.vue").default>
|
||||
'LazyLandingHeader': LazyComponent<typeof import("../../components/common/LandingHeader.vue").default>
|
||||
'LazyLoadingSkeleton': LazyComponent<typeof import("../../components/common/LoadingSkeleton.vue").default>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue