aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/main.ts
diff options
context:
space:
mode:
authorZero~Informatique2019-12-21 10:33:21 +0100
committerZero~Informatique2019-12-21 10:33:21 +0100
commit3f21d10338afe8eab699aaaea060556579e4b3c3 (patch)
treee6c9a51116b1cab9d6e44e21617bb7a1701ab463 /viewer/src/main.ts
parent9e4fdd6f38853d8a4a959901ab7902569de75484 (diff)
downloadldgallery-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.ts4
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";
6import store from '@/store' 6import store from '@/store'
7import i18n from "@/plugins/i18n"; 7import i18n from "@/plugins/i18n";
8import router from "@/router"; 8import router from "@/router";
9import LdGallery from "@/views/LdGallery.vue"; 9import MainLayout from "@/views/MainLayout.vue";
10 10
11Vue.config.productionTip = false; 11Vue.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");