@merkaly/nuxt 0.7.9 → 0.7.10
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/dist/module.json
CHANGED
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare var
|
|
1
|
+
declare var __VLS_29: {}, __VLS_31: {};
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
|
-
loading?: (props: typeof
|
|
3
|
+
loading?: (props: typeof __VLS_29) => any;
|
|
4
4
|
} & {
|
|
5
|
-
default?: (props: typeof
|
|
5
|
+
default?: (props: typeof __VLS_31) => any;
|
|
6
6
|
};
|
|
7
7
|
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
8
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|
|
@@ -17,6 +17,8 @@ hook("page:finish", () => regenerate());
|
|
|
17
17
|
|
|
18
18
|
<template>
|
|
19
19
|
<main>
|
|
20
|
+
<NuxtLoadingIndicator color="var(--bs-primary)" :height="3" />
|
|
21
|
+
|
|
20
22
|
<Notivue v-slot="item">
|
|
21
23
|
<Notification :item="item" :theme="pastelTheme" title>
|
|
22
24
|
<NotificationProgress :item="item" />
|
|
@@ -24,10 +26,8 @@ hook("page:finish", () => regenerate());
|
|
|
24
26
|
</Notivue>
|
|
25
27
|
|
|
26
28
|
<BApp>
|
|
27
|
-
<!-- Mostramos spinner mientras auth se carga -->
|
|
28
29
|
<slot v-if="isLoading" name="loading" />
|
|
29
30
|
|
|
30
|
-
<!-- Renderizamos páginas solo cuando isLoading = false -->
|
|
31
31
|
<slot v-else>
|
|
32
32
|
<NuxtPage />
|
|
33
33
|
</slot>
|
|
@@ -1,8 +1,8 @@
|
|
|
1
|
-
declare var
|
|
1
|
+
declare var __VLS_29: {}, __VLS_31: {};
|
|
2
2
|
type __VLS_Slots = {} & {
|
|
3
|
-
loading?: (props: typeof
|
|
3
|
+
loading?: (props: typeof __VLS_29) => any;
|
|
4
4
|
} & {
|
|
5
|
-
default?: (props: typeof
|
|
5
|
+
default?: (props: typeof __VLS_31) => any;
|
|
6
6
|
};
|
|
7
7
|
declare const __VLS_base: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
8
8
|
declare const __VLS_export: __VLS_WithSlots<typeof __VLS_base, __VLS_Slots>;
|