diff options
author | pacien | 2020-05-02 04:11:24 +0200 |
---|---|---|
committer | pacien | 2020-05-02 04:11:24 +0200 |
commit | 8e3ac8fe44bebb38e1882ca7f06b8100078ad88d (patch) | |
tree | a748fa1e639cb3b5e1f24a8150e89dbb28c980cb /viewer/src/main.ts | |
parent | 7042ffc06326fa8ffe70f5a59747709250166c16 (diff) | |
parent | 0e0b5b0ae44da7c1d67983dedd8f8d8d3516236f (diff) | |
download | ldgallery-8e3ac8fe44bebb38e1882ca7f06b8100078ad88d.tar.gz |
Merge branch 'develop': release v1.0v1.0
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r-- | viewer/src/main.ts | 18 |
1 files changed, 10 insertions, 8 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts index a5faa51..847048f 100644 --- a/viewer/src/main.ts +++ b/viewer/src/main.ts | |||
@@ -19,19 +19,21 @@ | |||
19 | 19 | ||
20 | import Vue from "vue"; | 20 | import Vue from "vue"; |
21 | import "@/assets/scss/global.scss"; | 21 | import "@/assets/scss/global.scss"; |
22 | import "@/components" | 22 | import store from "@/store" |
23 | import "@/plugins/fontawesome"; | ||
24 | import "@/plugins/buefy"; | ||
25 | import store from '@/store' | ||
26 | import i18n from "@/plugins/i18n"; | 23 | import i18n from "@/plugins/i18n"; |
27 | import router from "@/router"; | 24 | import router from "@/plugins/router"; |
28 | import MainLayout from "@/views/MainLayout.vue"; | ||
29 | |||
30 | Vue.config.productionTip = false; | 25 | Vue.config.productionTip = false; |
31 | 26 | ||
27 | import(/* webpackChunkName: "ui" */ "@/plugins/buefy"); | ||
28 | import(/* webpackChunkName: "ui" */ "@/components"); | ||
29 | import(/* webpackChunkName: "ui" */ "@/plugins/lazyimage"); | ||
30 | import(/* webpackChunkName: "ui" */ "@/plugins/dragscroll"); | ||
31 | import(/* webpackChunkName: "ui" */ "@/plugins/fontawesome"); | ||
32 | const MainLayout = () => import(/* webpackChunkName: "ui" */ "@/views/MainLayout.vue"); | ||
33 | |||
32 | new Vue({ | 34 | new Vue({ |
33 | router, | 35 | router, |
34 | i18n, | 36 | i18n, |
35 | store, | 37 | store, |
36 | render: h => h(MainLayout) | 38 | render: h => h(MainLayout) |
37 | }).$mount("#ldgallery"); | 39 | }).$mount("#ldgallery") |