1 Star 3 Fork 2

lijiuju/uni-book-shop

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
main.js 826 Bytes
一键复制 编辑 原始数据 按行查看 历史
lijiuju 提交于 2021-08-19 08:41 . add: 完成首页和登入
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
// 引入全局uView
import uView from 'uview-ui'
Vue.use(uView);
let vuexStore = require("@/store/$u.mixin.js");
Vue.mixin(vuexStore);
import store from '@/store';
const app = new Vue({
store,
...App
})
// http拦截器,此为需要加入的内容,如果不是写在common目录,请自行修改引入路径
import httpInterceptor from '@/common/http.interceptor.js'
// 这里需要写在最后,是为了等Vue创建对象完成,引入"app"对象(也即页面的"this"实例)
Vue.use(httpInterceptor, app)
// http接口API集中管理引入部分
import httpApi from '@/common/http.api.js'
Vue.use(httpApi, app)
// 自定义工具
import utils from '@/common/utils.js'
Vue.use(utils, app)
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/kg9471/uni-book-shop.git
[email protected]:kg9471/uni-book-shop.git
kg9471
uni-book-shop
uni-book-shop
master

搜索帮助