@bildvitta/quasar-app-extension-asteroid 2.18.0 → 2.19.0
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/package.json +1 -1
- package/src/boot/error-pages.js +6 -0
package/package.json
CHANGED
package/src/boot/error-pages.js
CHANGED
|
@@ -1,5 +1,6 @@
|
|
|
1
1
|
import ForbiddenPage from '@bildvitta/quasar-ui-asteroid/src/pages/Forbidden.vue'
|
|
2
2
|
import NotFound from '@bildvitta/quasar-ui-asteroid/src/pages/NotFound.vue'
|
|
3
|
+
import ServerError from '@bildvitta/quasar-ui-asteroid/src/pages/ServerError.vue'
|
|
3
4
|
|
|
4
5
|
export default function ({ router }) {
|
|
5
6
|
const routes = [
|
|
@@ -7,6 +8,11 @@ export default function ({ router }) {
|
|
|
7
8
|
name: 'Forbidden',
|
|
8
9
|
path: '/',
|
|
9
10
|
component: ForbiddenPage
|
|
11
|
+
},
|
|
12
|
+
{
|
|
13
|
+
name: 'ServerError',
|
|
14
|
+
path: '/',
|
|
15
|
+
component: ServerError
|
|
10
16
|
}
|
|
11
17
|
]
|
|
12
18
|
|