diff options
Diffstat (limited to 'viewer/src/plugins')
-rw-r--r-- | viewer/src/plugins/buefy.ts | 4 | ||||
-rw-r--r-- | viewer/src/plugins/fontawesome.ts | 2 | ||||
-rw-r--r-- | viewer/src/plugins/router.ts | 17 |
3 files changed, 13 insertions, 10 deletions
diff --git a/viewer/src/plugins/buefy.ts b/viewer/src/plugins/buefy.ts index 74b6176..ebdf64e 100644 --- a/viewer/src/plugins/buefy.ts +++ b/viewer/src/plugins/buefy.ts | |||
@@ -24,7 +24,7 @@ import Taginput from 'buefy/src/components/taginput'; | |||
24 | // @ts-ignore | 24 | // @ts-ignore |
25 | import Loading from 'buefy/src/components/loading'; | 25 | import Loading from 'buefy/src/components/loading'; |
26 | // @ts-ignore | 26 | // @ts-ignore |
27 | import Radio from 'buefy/src/components/radio'; | 27 | import Button from 'buefy/src/components/button'; |
28 | // @ts-ignore | 28 | // @ts-ignore |
29 | import SnackBar from 'buefy/src/components/snackbar'; | 29 | import SnackBar from 'buefy/src/components/snackbar'; |
30 | 30 | ||
@@ -32,7 +32,7 @@ import "@/assets/scss/buefy.scss"; | |||
32 | 32 | ||
33 | Vue.use(Taginput); | 33 | Vue.use(Taginput); |
34 | Vue.use(Loading); | 34 | Vue.use(Loading); |
35 | Vue.use(Radio); | 35 | Vue.use(Button); |
36 | Vue.use(SnackBar); | 36 | Vue.use(SnackBar); |
37 | 37 | ||
38 | declare module 'vue/types/vue' { | 38 | declare module 'vue/types/vue' { |
diff --git a/viewer/src/plugins/fontawesome.ts b/viewer/src/plugins/fontawesome.ts index e8848f9..cc8b7ab 100644 --- a/viewer/src/plugins/fontawesome.ts +++ b/viewer/src/plugins/fontawesome.ts | |||
@@ -23,6 +23,7 @@ import { library, config } from "@fortawesome/fontawesome-svg-core"; | |||
23 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; | 23 | import { FontAwesomeIcon } from "@fortawesome/vue-fontawesome"; |
24 | import { | 24 | import { |
25 | faFolder, | 25 | faFolder, |
26 | faEraser, | ||
26 | faSearch, | 27 | faSearch, |
27 | faPlus, | 28 | faPlus, |
28 | faMinus, | 29 | faMinus, |
@@ -37,6 +38,7 @@ import { | |||
37 | 38 | ||
38 | library.add( | 39 | library.add( |
39 | faFolder, | 40 | faFolder, |
41 | faEraser, | ||
40 | faSearch, | 42 | faSearch, |
41 | faPlus, | 43 | faPlus, |
42 | faMinus, | 44 | faMinus, |
diff --git a/viewer/src/plugins/router.ts b/viewer/src/plugins/router.ts index 8b4a8dc..00979c9 100644 --- a/viewer/src/plugins/router.ts +++ b/viewer/src/plugins/router.ts | |||
@@ -18,19 +18,20 @@ | |||
18 | */ | 18 | */ |
19 | 19 | ||
20 | import Vue from "vue"; | 20 | import Vue from "vue"; |
21 | import VueRouter from "vue-router"; | 21 | import VueRouter, { RouteConfig } from "vue-router"; |
22 | import MainGallery from "@/views/MainGallery.vue"; | 22 | import GalleryNavigation from "@/views/GalleryNavigation.vue"; |
23 | 23 | ||
24 | Vue.use(VueRouter); | 24 | Vue.use(VueRouter); |
25 | 25 | ||
26 | // async way : component: () => import(/* webpackChunkName: "MainGallery" */ "@/views/MainGallery.vue"), | 26 | const routes: RouteConfig[] = [ |
27 | |||
28 | const routes = [ | ||
29 | { | 27 | { |
30 | path: "*", | 28 | path: "*", |
31 | name: "MainGallery", | 29 | name: "GalleryNavigation", |
32 | component: MainGallery, | 30 | component: GalleryNavigation, |
33 | props: true | 31 | props: (route) => ({ |
32 | path: route.params.pathMatch, | ||
33 | query: Object.keys(route.query), | ||
34 | }), | ||
34 | }, | 35 | }, |
35 | ]; | 36 | ]; |
36 | 37 | ||