aboutsummaryrefslogtreecommitdiff
path: root/viewer/src/main.ts
diff options
context:
space:
mode:
authorZero~Informatique2019-12-21 02:06:02 +0100
committerZero~Informatique2019-12-21 02:06:02 +0100
commit62005141132da1e9761598fa3e4b35b4dab38a89 (patch)
tree3ff8b9f3acd07801075202f9eb2d2f2dfd328ff5 /viewer/src/main.ts
parentbdce958eddc527912a57afa5b8151e1a90e38355 (diff)
downloadldgallery-62005141132da1e9761598fa3e4b35b4dab38a89.tar.gz
Implemented VueX and a basic UIStore with the fullscreen mutation
Some renaming
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r--viewer/src/main.ts4
1 files changed, 3 insertions, 1 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts
index 352b565..3a3593c 100644
--- a/viewer/src/main.ts
+++ b/viewer/src/main.ts
@@ -2,6 +2,7 @@ import Vue from "vue";
2import "@/assets/scss/global.scss"; 2import "@/assets/scss/global.scss";
3import "@/plugins/fontawesome"; 3import "@/plugins/fontawesome";
4import "@/plugins/buefy"; 4import "@/plugins/buefy";
5import store from '@/plugins/vuex'
5import i18n from "@/plugins/i18n"; 6import i18n from "@/plugins/i18n";
6import router from "@/router"; 7import router from "@/router";
7import LdGallery from "@/views/LdGallery.vue"; 8import LdGallery from "@/views/LdGallery.vue";
@@ -11,5 +12,6 @@ Vue.config.productionTip = false;
11new Vue({ 12new Vue({
12 router, 13 router,
13 i18n, 14 i18n,
14 render: h => h(LdGallery), 15 store,
16 render: h => h(LdGallery)
15}).$mount("#ldgallery"); 17}).$mount("#ldgallery");