2 Star 22 Fork 23

重庆柔软科技有限公司/天天商城后台

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 568 Bytes
一键复制 编辑 原始数据 按行查看 历史
主角 提交于 2022-06-09 15:01 . 增加国际化,优化页面配置
import Vue from 'vue'
import App from './App'
import store from './store'
import plugin from './js_sdk/uni-admin/plugin'
import messages from './i18n/index.js'
const lang = uni.getLocale()
console.log("lang", lang)
Vue.config.productionTip = false
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
// 通过选项创建 VueI18n 实例
const i18n = new VueI18n({
locale: lang, // 设置地区
messages, // 设置地区信息
})
import mixin from '@/common/js/mixin.js'
Vue.mixin(mixin)
Vue.use(plugin)
App.mpType = 'app'
const app = new Vue({
i18n,
store,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/cq-soft/tiantian-admin.git
git@gitee.com:cq-soft/tiantian-admin.git
cq-soft
tiantian-admin
天天商城后台
master

搜索帮助