diff options
author | Zero~Informatique | 2019-12-21 10:33:21 +0100 |
---|---|---|
committer | Zero~Informatique | 2019-12-21 10:33:21 +0100 |
commit | 3f21d10338afe8eab699aaaea060556579e4b3c3 (patch) | |
tree | e6c9a51116b1cab9d6e44e21617bb7a1701ab463 /viewer/src/main.ts | |
parent | 9e4fdd6f38853d8a4a959901ab7902569de75484 (diff) | |
download | ldgallery-3f21d10338afe8eab699aaaea060556579e4b3c3.tar.gz |
viewer:
Some renaming for better clarity
Implemented a basic display of filenames with basic navigation
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"); |