1 Star 0 Fork 10

wangzizheng/uni-drink

forked from joel郑/uni-drink 
加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 619 Bytes
一键复制 编辑 原始数据 按行查看 历史
郑明威 提交于 2022-02-24 22:27 . 完成接口迁移,main.js简化
import Vue from 'vue'
import App from './App'
import util from './common/util'
import store from './store'
import uView from "uview-ui";
Vue.config.productionTip = false
App.mpType = 'app'
Vue.prototype.$store = store
Vue.prototype.$util = util
const app = new Vue({
store,
...App
})
Vue.use(uView);
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
import httpInterceptor from '@/common/http.interceptor.js'
Vue.use(httpInterceptor, app)
// http接口API集中管理引入部分
import httpApi from '@/common/http.api.js'
Vue.use(httpApi, app)
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/wzz_mac/uni-drink.git
git@gitee.com:wzz_mac/uni-drink.git
wzz_mac
uni-drink
uni-drink
prod_1.2.1

搜索帮助