1 Star 0 Fork 45

张三峰/uni-app-mall

forked from javazj/uni-app-mall 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.29 KB
一键复制 编辑 原始数据 按行查看 历史
javazj 提交于 2022-02-02 16:37 . 增加普通h5浏览器的登陆,支付
import Vue from 'vue'
import App from './App'
import WXAPI from 'apifm-uniapp'
// vuex
import store from './store'
// 引入全局uView
import uView from '@/uni_modules/uview-ui'
import mixin from './common/mixin'
Vue.prototype.$store = store
Vue.config.productionTip = false
App.mpType = 'app'
Vue.use(uView)
Vue.prototype.$wxapi = WXAPI
// 引入uView提供的对vuex的简写法文件
let vuexStore = require('@/store/$u.mixin.js');
Vue.mixin(vuexStore);
// #ifdef MP
// 引入uView对小程序分享的mixin封装
const mpShare = require('@/uni_modules/uview-ui/libs/mixin/mpShare.js')
Vue.mixin(mpShare)
// #endif
Vue.mixin(mixin)
// i18n部分的配置
// 引入语言包,注意路径
import Chinese from '@/common/locales/zh.js';
import English from '@/common/locales/en.js';
// VueI18n
import VueI18n from '@/common/vue-i18n.min.js';
// VueI18n
Vue.use(VueI18n);
const lang = uni.getStorageSync('lang')
const i18n = new VueI18n({
// 默认语言
locale: lang ? lang : 'zh',
// 引入语言文件
messages: {
'zh': Chinese,
'en': English,
}
});
// 由于微信小程序的运行机制问题,需声明如下一行,H5和APP非必填
Vue.prototype._i18n = i18n;
const app = new Vue({
i18n,
store,
...App
})
// 引入请求封装
require('./util/request/index')(app)
app.$mount()
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/fff_1993/uni-app-mall.git
[email protected]:fff_1993/uni-app-mall.git
fff_1993
uni-app-mall
uni-app-mall
main

搜索帮助