You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
297 B
19 lines
297 B
import Vue from 'vue'
|
|
import VueI18n from 'vue-i18n'
|
|
import zh from './zh'
|
|
import en from './en'
|
|
import la from './laos'
|
|
|
|
Vue.use(VueI18n)
|
|
|
|
const messages = {
|
|
zh,
|
|
en,
|
|
la
|
|
}
|
|
|
|
export default new VueI18n({
|
|
locale: localStorage.getItem('language') || 'zh',
|
|
fallbackLocale: 'zh',
|
|
messages
|
|
})
|