summaryrefslogtreecommitdiff
path: root/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'src/main.js')
-rw-r--r--src/main.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/main.js b/src/main.js
index d80d2019..72167510 100644
--- a/src/main.js
+++ b/src/main.js
@@ -25,6 +25,7 @@ import {
ToastPlugin
} from 'bootstrap-vue';
import Vuelidate from 'vuelidate';
+import i18n from './i18n';
Vue.filter('date', dateFilter);
@@ -59,5 +60,6 @@ Vue.use(Vuelidate);
new Vue({
router,
store,
+ i18n,
render: h => h(App)
}).$mount('#app');