1 Star 0 Fork 9

幽梦技术栈/微凌客旅游管理系统(前端uni-app)

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
main.js 1.04 KB
一键复制 编辑 原始数据 按行查看 历史
amen 提交于 2024-05-20 21:34 . 开源uniApp端
/**
* @author{string} 温州微凌客科技有限公司
* @detail{string} 本程序为温州微凌客科技有限公司基于fastadmin开发应用插件wlktour 旅游线路平台,严禁私自倒卖未经授权搭建!!!
**/
import Vue from 'vue';
import App from './App';
import store from '@/wlkutils/store';
import mixin from '@/wlkutils/mixins';
import uView from 'uview-ui';
import {router,RouterMount} from 'wlkutils/router';
import publicModule from "@/components/common/public-module.vue";
// #ifdef H5
// 提交前需要注释 本地调试使用
// const vconsole = require('vconsole')
// Vue.prototype.$vconsole = new vconsole() // 使用vconsole
// #endif
// 引入请求封装
require('./wlkutils/request')(app);
Vue.use(uView);
Vue.use(router);
Vue.mixin(mixin);
Vue.component("public-module", publicModule);
Vue.config.productionTip = false; //阻止启动生产消息;
App.mpType = 'app';
const app = new Vue({
store,
...App
})
// #ifdef H5
RouterMount(app, router, "#app");
// #endif
// #ifndef H5
app.$mount();
// #endif
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
JavaScript
1
https://gitee.com/mxchen-team/wlktour-uniapp.git
git@gitee.com:mxchen-team/wlktour-uniapp.git
mxchen-team
wlktour-uniapp
微凌客旅游管理系统(前端uni-app)
master

搜索帮助