@dargmuesli/nuxt-vio 10.2.3 → 10.2.4
Sign up to get free protection for your applications and to get access to all the features.
- package/error.vue +11 -8
- package/package.json +2 -2
package/error.vue
CHANGED
@@ -1,12 +1,15 @@
|
|
1
1
|
<template>
|
2
|
-
<
|
3
|
-
|
4
|
-
|
5
|
-
|
6
|
-
|
7
|
-
|
8
|
-
|
9
|
-
|
2
|
+
<div>
|
3
|
+
<!-- `NuxtLayout` can't be the root element (https://github.com/nuxt/nuxt/issues/25214) -->
|
4
|
+
<NuxtLayout>
|
5
|
+
<VioError
|
6
|
+
:status-code="error.statusCode"
|
7
|
+
:status-message="error.statusMessage"
|
8
|
+
:description="error.message"
|
9
|
+
:stack="error.stack"
|
10
|
+
/>
|
11
|
+
</NuxtLayout>
|
12
|
+
</div>
|
10
13
|
</template>
|
11
14
|
|
12
15
|
<script setup lang="ts">
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dargmuesli/nuxt-vio",
|
3
|
-
"version": "10.2.
|
3
|
+
"version": "10.2.4",
|
4
4
|
"repository": {
|
5
5
|
"type": "git",
|
6
6
|
"url": "git+https://github.com/dargmuesli/vio.git"
|
@@ -55,7 +55,7 @@
|
|
55
55
|
"dayjs": "2.0.0-alpha.4",
|
56
56
|
"jose": "5.2.0",
|
57
57
|
"nuxt-security": "1.0.1",
|
58
|
-
"sweetalert2": "11.10.
|
58
|
+
"sweetalert2": "11.10.4",
|
59
59
|
"vue-gtag": "2.0.1"
|
60
60
|
},
|
61
61
|
"devDependencies": {
|