1 Star 0 Fork 6

镜花/zml-games-all

forked from 张大炮/zml-games-all 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 916 Bytes
一键复制 编辑 原始数据 按行查看 历史
张大炮 提交于 2022-01-04 10:47 . 2022-01-04提交
import App from './App'
import Vue from 'vue'
import uView from "uview-ui";
Vue.use(uView);
import store from '@/store';
let vuexStore = require("@/store/$u.mixin.js");
Vue.mixin(vuexStore);
// 语言切换 混入
// let mixin_lang = require("@/mixins/mixin_lang.js");
// Vue.mixin(mixin_lang)
// 引入语言包,注意路径
import cn from '@/common/lang/cn.js';
import en from '@/common/lang/en.js';
// 引入并使用vue-i18n
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
// 构造i18n对象
const i18n = new VueI18n({
locale: 'cn', // 默认语言,这里的local属性,对应message中的zh、en属性
messages: { // 引入语言文件
'cn': cn,
'en': en,
}
})
// 由于微信小程序的运行机制问题,需声明如下一行,H5和APP非必填
Vue.prototype._i18n = i18n
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
i18n,
...App
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/hiphops/zml-games-all.git
git@gitee.com:hiphops/zml-games-all.git
hiphops
zml-games-all
zml-games-all
master

搜索帮助

0d507c66 1850385 C8b1a773 1850385