@nuxtify/core 0.1.8 → 0.1.9
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/README.md +8 -0
- package/dist/module.json +1 -1
- package/dist/module.mjs +1 -1
- package/dist/runtime/components/app/AppCredits.vue +1 -8
- package/dist/runtime/components/app/AppCredits.vue.d.ts +1 -13
- package/dist/runtime/components/app/AppError.vue +29 -0
- package/dist/runtime/components/app/AppError.vue.d.ts +2 -0
- package/dist/runtime/composables/nuxtify.js +2 -1
- package/package.json +1 -1
package/README.md
CHANGED
|
@@ -67,6 +67,14 @@ Provides single and multi-page website building blocks so you can _ship weirdly
|
|
|
67
67
|
- Ready to use page components, page templates, and email subscribe form
|
|
68
68
|
- (coming soon) Robots, sitemaps, schema.org, social share images, broken links, and more powered by [Nuxt SEO](https://nuxtseo.com/)
|
|
69
69
|
|
|
70
|
+
### [Nuxtify App](https://github.com/nuxtify-dev/app)
|
|
71
|
+
|
|
72
|
+
Provides a single page app (SPA) skeleton for building your next SaaS or AI tool.
|
|
73
|
+
|
|
74
|
+
- Admin backend powered by [Firebase](https://firebase.google.com/) and [Vuefire](https://vuefire.vuejs.org/)
|
|
75
|
+
- Sign in and sign up pages powered by [Firebase Authentication](https://firebase.google.com/products/auth)
|
|
76
|
+
- User account page, app style navigation, and more...
|
|
77
|
+
|
|
70
78
|
## <a name="features">✨ Features</a>
|
|
71
79
|
|
|
72
80
|
Nuxtify Core builds on the amazing features of [Vue](https://vuejs.org/guide/introduction), [Nuxt](https://nuxt.com/docs/getting-started/introduction), and [Vuetify](https://vuetifyjs.com/en/introduction/why-vuetify/).
|
package/dist/module.json
CHANGED
package/dist/module.mjs
CHANGED
|
@@ -1,11 +1,5 @@
|
|
|
1
1
|
<script setup>
|
|
2
2
|
import { useNuxtifyConfig } from "#imports";
|
|
3
|
-
defineProps({
|
|
4
|
-
brandOpacity: {
|
|
5
|
-
type: Number,
|
|
6
|
-
default: 1
|
|
7
|
-
}
|
|
8
|
-
});
|
|
9
3
|
const nuxtifyConfig = useNuxtifyConfig();
|
|
10
4
|
</script>
|
|
11
5
|
|
|
@@ -23,7 +17,6 @@ const nuxtifyConfig = useNuxtifyConfig();
|
|
|
23
17
|
<span v-if="nuxtifyConfig.credits.creator?.name">
|
|
24
18
|
<a
|
|
25
19
|
v-if="nuxtifyConfig.credits.creator.domain"
|
|
26
|
-
id="brand-name"
|
|
27
20
|
:href="`https://${nuxtifyConfig.credits.creator.domain}/?utm_source=${nuxtifyConfig.brand?.domain}&utm_medium=referral`"
|
|
28
21
|
target="_blank"
|
|
29
22
|
rel="noopener noreferrer"
|
|
@@ -51,5 +44,5 @@ const nuxtifyConfig = useNuxtifyConfig();
|
|
|
51
44
|
</template>
|
|
52
45
|
|
|
53
46
|
<style scoped>
|
|
54
|
-
a{color:inherit;justify-content:start;text-decoration:none}.v-btn:hover,a:hover{text-decoration:underline;text-underline-offset:4px}
|
|
47
|
+
a{color:inherit;justify-content:start;text-decoration:none}.v-btn:hover,a:hover{text-decoration:underline;text-underline-offset:4px}
|
|
55
48
|
</style>
|
|
@@ -1,14 +1,2 @@
|
|
|
1
|
-
declare const _default: import("vue").DefineComponent<import("vue").
|
|
2
|
-
brandOpacity: {
|
|
3
|
-
type: NumberConstructor;
|
|
4
|
-
default: number;
|
|
5
|
-
};
|
|
6
|
-
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
7
|
-
brandOpacity: {
|
|
8
|
-
type: NumberConstructor;
|
|
9
|
-
default: number;
|
|
10
|
-
};
|
|
11
|
-
}>> & Readonly<{}>, {
|
|
12
|
-
brandOpacity: number;
|
|
13
|
-
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
14
2
|
export default _default;
|
|
@@ -0,0 +1,29 @@
|
|
|
1
|
+
<script setup>
|
|
2
|
+
import { useErrorMessage } from "#imports";
|
|
3
|
+
const errorMessage = useErrorMessage();
|
|
4
|
+
const isDev = import.meta.dev;
|
|
5
|
+
</script>
|
|
6
|
+
|
|
7
|
+
<template>
|
|
8
|
+
<v-alert
|
|
9
|
+
v-if="errorMessage"
|
|
10
|
+
type="error"
|
|
11
|
+
density="compact"
|
|
12
|
+
variant="text"
|
|
13
|
+
:icon="false"
|
|
14
|
+
class="text-body-2 pa-0"
|
|
15
|
+
>
|
|
16
|
+
{{ errorMessage }}
|
|
17
|
+
|
|
18
|
+
<!-- DEBUG -->
|
|
19
|
+
<div
|
|
20
|
+
v-if="isDev"
|
|
21
|
+
class="mt-2"
|
|
22
|
+
>
|
|
23
|
+
<h2 class="text-h6 text-black">
|
|
24
|
+
Debug
|
|
25
|
+
</h2>
|
|
26
|
+
<pre>{{ errorMessage }}</pre>
|
|
27
|
+
</div>
|
|
28
|
+
</v-alert>
|
|
29
|
+
</template>
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
declare const _default: import("vue").DefineComponent<{}, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {}, string, import("vue").PublicProps, Readonly<{}> & Readonly<{}>, {}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
2
|
+
export default _default;
|