generated from Seekra/repository-template
Add base i18n
This commit is contained in:
+5
-1
@@ -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')
|
||||
Reference in New Issue
Block a user