Add base i18n

This commit is contained in:
2026-05-19 19:39:56 +02:00
parent 09c645e657
commit f37d403636
2 changed files with 31 additions and 1 deletions
+5 -1
View File
@@ -16,8 +16,12 @@ limitations under the License.
import { createApp } from 'vue'
import App from './App.vue'
import { i18n } from './i18n';
import router from './router'
import './styles/common.css'
import './styles/variables/colors.css'
createApp(App).use(router).mount('#app')
createApp(App)
.use(router)
.use(i18n)
.mount('#app')