1 Star 0 Fork 7

ouyle/uni-app-tabbar

forked from jay/uni-app-tabbar 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
该仓库未声明开源许可证文件(LICENSE),使用请关注具体项目描述及其代码上游依赖。
克隆/下载
main.js 962 Bytes
一键复制 编辑 原始数据 按行查看 历史
jay 提交于 2022-12-14 13:41 . 增加动态修改主题色
import Vue from 'vue'
import App from './App'
import api from '@/common/api.js'
Vue.config.productionTip = false
Vue.prototype.$api = api
import operate from "common/operate.js" //全局js
Vue.prototype.$operate = operate
//路由封装
import routr from './utils/routeBlocker.js'
Vue.prototype.$routr = routr
//小程序 - 全局分享设置
import share from './utils/wxShare.js'
Vue.mixin(share)
//引入store
import store from 'store/index.js'
Vue.prototype.$store = store
//监听主题变化
import theme from './theme/cue-theme.js'
Vue.use(theme)
// 国际化 json 文件,文件内容详见下面的示例
import messages from './locale/index.js'
let il8nConfig = {
locale: uni.getLocale(), //获取已设置语言
messages, // 设置语言环境信息
silentTranslationWarn: true,
}
import VueI18n from 'vue-i18n'
Vue.use(VueI18n)
const i18n = new VueI18n(il8nConfig)
App.mpType = 'app'
const app = new Vue({
...App,
i18n
})
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
其他
1
https://gitee.com/ouyle/uni-app-tabbar.git
git@gitee.com:ouyle/uni-app-tabbar.git
ouyle
uni-app-tabbar
uni-app-tabbar
master

搜索帮助