added locale

This commit is contained in:
wea_ondara
2023-09-21 18:56:45 +02:00
parent 1d902bb4da
commit b8aa21fbd5
6 changed files with 102 additions and 0 deletions

View File

@@ -4,9 +4,12 @@ import {createPinia} from 'pinia';
import App from './App.vue';
import router from './router';
import {createI18n} from '@/locale/locale';
const app = createApp(App);
app.use(createPinia());
app.use(router);
app.use(createI18n());
app.mount('#app');