diff options
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r-- | viewer/src/main.ts | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts new file mode 100644 index 0000000..352b565 --- /dev/null +++ b/viewer/src/main.ts | |||
@@ -0,0 +1,15 @@ | |||
1 | import Vue from "vue"; | ||
2 | import "@/assets/scss/global.scss"; | ||
3 | import "@/plugins/fontawesome"; | ||
4 | import "@/plugins/buefy"; | ||
5 | import i18n from "@/plugins/i18n"; | ||
6 | import router from "@/router"; | ||
7 | import LdGallery from "@/views/LdGallery.vue"; | ||
8 | |||
9 | Vue.config.productionTip = false; | ||
10 | |||
11 | new Vue({ | ||
12 | router, | ||
13 | i18n, | ||
14 | render: h => h(LdGallery), | ||
15 | }).$mount("#ldgallery"); | ||