diff options
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r-- | viewer/src/main.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts index 06fe8f8..736e6c7 100644 --- a/viewer/src/main.ts +++ b/viewer/src/main.ts | |||
@@ -6,7 +6,7 @@ import "@/plugins/buefy"; | |||
6 | import store from '@/store' | 6 | import store from '@/store' |
7 | import i18n from "@/plugins/i18n"; | 7 | import i18n from "@/plugins/i18n"; |
8 | import router from "@/router"; | 8 | import router from "@/router"; |
9 | import LdGallery from "@/views/LdGallery.vue"; | 9 | import MainLayout from "@/views/MainLayout.vue"; |
10 | 10 | ||
11 | Vue.config.productionTip = false; | 11 | Vue.config.productionTip = false; |
12 | 12 | ||
@@ -14,5 +14,5 @@ new Vue({ | |||
14 | router, | 14 | router, |
15 | i18n, | 15 | i18n, |
16 | store, | 16 | store, |
17 | render: h => h(LdGallery) | 17 | render: h => h(MainLayout) |
18 | }).$mount("#ldgallery"); | 18 | }).$mount("#ldgallery"); |