mirror of
https://github.com/wanglin2/mind-map.git
synced 2026-02-17 14:04:47 +08:00
14 lines
217 B
JavaScript
14 lines
217 B
JavaScript
import Vue from 'vue'
|
|
import VueI18n from 'vue-i18n'
|
|
import messages from './lang'
|
|
import { getLang } from '@/api'
|
|
|
|
Vue.use(VueI18n)
|
|
|
|
const i18n = new VueI18n({
|
|
locale: getLang(),
|
|
messages
|
|
})
|
|
|
|
export default i18n
|