diff options
Diffstat (limited to 'viewer/src/main.ts')
-rw-r--r-- | viewer/src/main.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/viewer/src/main.ts b/viewer/src/main.ts index bc005c5..f849525 100644 --- a/viewer/src/main.ts +++ b/viewer/src/main.ts | |||
@@ -31,11 +31,11 @@ import(/* webpackChunkName: "ui" */ "@/plugins/dragscroll"); | |||
31 | import(/* webpackChunkName: "ui" */ "@/plugins/fontawesome"); | 31 | import(/* webpackChunkName: "ui" */ "@/plugins/fontawesome"); |
32 | const MainLayout = () => import(/* webpackChunkName: "ui" */ "@/views/MainLayout.vue"); | 32 | const MainLayout = () => import(/* webpackChunkName: "ui" */ "@/views/MainLayout.vue"); |
33 | 33 | ||
34 | Vue.filter("underscore-to-space", (input: string) => input.replace(/_/g, ' ')); | ||
35 | |||
34 | new Vue({ | 36 | new Vue({ |
35 | router, | 37 | router, |
36 | i18n, | 38 | i18n, |
37 | store, | 39 | store, |
38 | render: h => h(MainLayout) | 40 | render: h => h(MainLayout) |
39 | }).$mount("#ldgallery") | 41 | }).$mount("#ldgallery") |
40 | |||
41 | |||