diff options
author | Zero~Informatique | 2020-06-20 16:50:49 +0200 |
---|---|---|
committer | OzoneGrif | 2020-06-28 14:11:13 +0200 |
commit | 170d7a61f720ece9dc4b347b19f5a8213f1d8984 (patch) | |
tree | 3a7af0595faea4a98437f8f73b3172529bda3a1d /viewer/src/main.ts | |
parent | 06355c9cebce469d3d827d48043387144c2458a5 (diff) | |
download | ldgallery-170d7a61f720ece9dc4b347b19f5a8213f1d8984.tar.gz |
viewer: prettier formatting based on eslint-prettier plugin
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r-- | viewer/src/main.ts | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts index 847048f..3c1a5d1 100644 --- a/viewer/src/main.ts +++ b/viewer/src/main.ts | |||
@@ -19,7 +19,7 @@ | |||
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 store from "@/store" | 22 | import store from "@/store"; |
23 | import i18n from "@/plugins/i18n"; | 23 | import i18n from "@/plugins/i18n"; |
24 | import router from "@/plugins/router"; | 24 | import router from "@/plugins/router"; |
25 | Vue.config.productionTip = false; | 25 | Vue.config.productionTip = false; |
@@ -35,5 +35,5 @@ new Vue({ | |||
35 | router, | 35 | router, |
36 | i18n, | 36 | i18n, |
37 | store, | 37 | store, |
38 | render: h => h(MainLayout) | 38 | render: h => h(MainLayout), |
39 | }).$mount("#ldgallery") | 39 | }).$mount("#ldgallery"); |