diff options
Diffstat (limited to 'viewer/src/plugins')
-rw-r--r-- | viewer/src/plugins/router.ts | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/viewer/src/plugins/router.ts b/viewer/src/plugins/router.ts index 0f3d2c7..8b4a8dc 100644 --- a/viewer/src/plugins/router.ts +++ b/viewer/src/plugins/router.ts | |||
@@ -19,17 +19,17 @@ | |||
19 | 19 | ||
20 | import Vue from "vue"; | 20 | import Vue from "vue"; |
21 | import VueRouter from "vue-router"; | 21 | import VueRouter from "vue-router"; |
22 | import Gallery from "@/views/MainGallery.vue"; | 22 | import MainGallery from "@/views/MainGallery.vue"; |
23 | 23 | ||
24 | Vue.use(VueRouter); | 24 | Vue.use(VueRouter); |
25 | 25 | ||
26 | // async way : component: () => import(/* webpackChunkName: "Gallery" */ "@/views/Gallery.vue"), | 26 | // async way : component: () => import(/* webpackChunkName: "MainGallery" */ "@/views/MainGallery.vue"), |
27 | 27 | ||
28 | const routes = [ | 28 | const routes = [ |
29 | { | 29 | { |
30 | path: "*", | 30 | path: "*", |
31 | name: "Gallery", | 31 | name: "MainGallery", |
32 | component: Gallery, | 32 | component: MainGallery, |
33 | props: true | 33 | props: true |
34 | }, | 34 | }, |
35 | ]; | 35 | ]; |