This commit is contained in:
Karel Vendla
2021-04-19 13:23:59 +03:00
parent 2e57464679
commit eb85ab4e1b
12 changed files with 179 additions and 7 deletions

View File

@ -6,6 +6,7 @@ import App from '@/App.vue';
import router from '@/router';
import store from '@/store/store';
import VueNotifications from 'vue-notification';
import i18n from './config/i18n.config';
Vue.use(BVModalPlugin);
Vue.use(VueNotifications);
@ -15,6 +16,7 @@ Vue.config.productionTip = false;
const app = new Vue({
router,
store,
i18n,
render: h => h(App),
}).$mount('#app');