chore: Adding i18n support

This commit is contained in:
jezzahehn 2025-05-20 17:46:04 -04:00
parent fd9a752677
commit 629b26d30f
9 changed files with 121 additions and 58 deletions

View file

@ -1,5 +1,6 @@
import { createApp } from 'vue'
import './style.css'
import App from './App.vue'
import i18n from './i18n'
createApp(App).mount('#app')
createApp(App).use(i18n).mount('#app')