2 Star 0 Fork 0

王汉亮/网约车-wang

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 877 Bytes
一键复制 编辑 原始数据 按行查看 历史
王汉亮 提交于 2023-12-07 18:27 . save
import App from './App'
import Vue from 'vue'
import VueI18n from 'vue-i18n'
import uView from '@/uni_modules/uview-ui'
Vue.config.productionTip = false
App.mpType = 'app'
import toolsMethods from './utils/tools.js'
Vue.use(VueI18n);
Vue.use(uView)
Vue.prototype.$to = toolsMethods.jumpTo;
Vue.prototype.$tips = toolsMethods.showTips;
Vue.prototype.$tools = toolsMethods;
const i18n = new VueI18n({
// #ifdef APP-PLUS
locale: plus.storage.getItem('locale') || 'zh-CN', //初始化,保证刷新页面也保留
// #endif
// #ifdef H5
locale: localStorage.getItem('locale') || 'zh-CN', //初始化,保证刷新页面也保留
// #endif
// 加载语言文件的内容
messages: {
'zh-CN': require('./locales/zh-CN.js').lang,
'zh-TW': require('./locales/zh-TW.js').lang,
'en': require('./locales/en.js').lang,
}
})
const app = new Vue({
i18n,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
1
https://gitee.com/wang-hanliang/online-ride-hailing---wang.git
git@gitee.com:wang-hanliang/online-ride-hailing---wang.git
wang-hanliang
online-ride-hailing---wang
网约车-wang
master

搜索帮助