1 Star 0 Fork 92

liuxfu/相亲社区

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 716 Bytes
一键复制 编辑 原始数据 按行查看 历史
1099264057@qq,com 提交于 2022-03-13 19:49 . 1
import Vue from 'vue'
import App from './App'
Vue.config.productionTip = false
App.mpType = 'app'
// 引入全局uView
import uView from 'uview-ui'
Vue.use(uView);
// 此处为演示vuex使用,非uView的功能部分
import store from '@/store';
// 引入uView提供的对vuex的简写法文件
let vuexStore = require('@/store/$u.mixin.js');
Vue.mixin(vuexStore);
const app = new Vue({
store,
...App
})
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
import httpInterceptor from '@/common/http.interceptor.js';
Vue.use(httpInterceptor, app);
// 封装自定义提示框
import $mytip from 'common/tip.js'
Vue.prototype.$mytip = $mytip
app.$mount()
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Java
1
https://gitee.com/liuxfu/source-love.git
git@gitee.com:liuxfu/source-love.git
liuxfu
source-love
相亲社区
master

搜索帮助