This commit is contained in:
Nikola Petrov
2026-09-08 23:34:18 +02:00
parent 7f36d6f37c
commit 443a7c483a
12 changed files with 513 additions and 14 deletions
+7 -2
View File
@@ -1,13 +1,18 @@
import { createApp } from 'vue'
import { createRouter, createWebHashHistory } from 'vue-router'
import { routes, handleHotUpdate } from 'vue-router/auto-routes'
import App from './app.vue'
import { i18n, setLocale, initialLocale } from './i18n.js'
import '@fortawesome/fontawesome-free/css/all.min.css'
import 'bootstrap/dist/css/bootstrap.min.css'
import 'bootstrap/dist/js/bootstrap.bundle.min.js'
import 'vue-multiselect/dist/vue-multiselect.css';
import App from './app.vue'
await setLocale(initialLocale())
const router = createRouter({
history: createWebHashHistory(),
routes,
@@ -17,5 +22,5 @@ if (import.meta.hot) {
handleHotUpdate(router)
}
createApp(App).use(router).mount('#app')
createApp(App).use(router).use(i18n).mount('#app')