3 Star 14 Fork 4

聚是一团火/疫团Go -- 移动端

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.22 KB
一键复制 编辑 原始数据 按行查看 历史
iain 提交于 2022-04-10 17:53 . v1.0版本 + v1.1新增反馈页面
/**
* @file 业主端 小程序入口
* @author Iain
* @creation 2021/11/27
*/
import Vue from "vue";
import App from "./App";
// 引入 路由管理
import { router, RouterMount } from "./router/index";
// 引入 vuex状态管理
import store from "@/store";
let vuexStore = require("@/store/$u.mixin.js");
// 引入 uview
import uView from "uview-ui";
// 引入 全局过滤器
import * as filters from "@/filters/index";
// 引入 全局工具函数
import utils from "@/utils/index.js";
// 注入 全局过滤器
Object.keys(filters).forEach((key) => {
Vue.filter(key, filters[key]);
});
Vue.use(router);
Vue.use(uView);
Vue.mixin(vuexStore);
Vue.use(utils, app);
Vue.prototype.$utils = utils
Vue.config.productionTip = false;
App.mpType = "app";
const app = new Vue({
store,
...App,
});
// http拦截器,将此部分放在new Vue()和app.$mount()之间,才能App.vue中正常使用
require('@/utils/request/index')(app)
// http接口API集中管理引入部分
import api from "@/api/index";
Vue.use(api, app);
//v1.3.5起 H5端 应该去除原有的app.$mount();使用路由自带的渲染方式
// #ifdef H5
RouterMount(app, router, "#app");
// #endif
// #ifndef H5
// 兼容小程序及app端
app.$mount();
// #endif
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/Gathering-is-a-fire/yi-tuan-gou--unapp.git
[email protected]:Gathering-is-a-fire/yi-tuan-gou--unapp.git
Gathering-is-a-fire
yi-tuan-gou--unapp
疫团Go -- 移动端
master

搜索帮助