代码拉取完成,页面将自动刷新
import Vue from 'vue'
import App from './App'
import store from './store'
import MinCache from './common/util/MinCache.js'
import tip from './common/util/tip.js'
import configService from './common/service/config.service.js'
import router from './common/router'
import {RouterMount} from './plugin/uni-simple-router/index.js'
//引入mescroll插件
import MescrollBody from "@/components/mescroll-uni/mescroll-body.vue"
import MescrollUni from "@/components/mescroll-uni/mescroll-uni.vue"
Vue.component('mescroll-body', MescrollBody);
Vue.component('mescroll-uni', MescrollUni);
// 注册缓存器
Vue.use(MinCache, {timeout: 6})
Vue.prototype.$url = "https://jd.qdxl.tech/wechat-static/";
Vue.prototype.$img = "https://jd.qdxl.tech/jeecg-boot/sys/common/static/"
// store
Vue.prototype.$store = store;
// tip
Vue.prototype.$tip = tip;
// config
Vue.prototype.$config = configService;
// 引入全局uview-ui
import uView from '@/uni_modules/uview-ui'
Vue.use(uView)
// request请求
import {http} from '@/common/service/service.js'
Vue.prototype.$http = http
// import home from './pages/home/home.vue'
// Vue.component('home',home)
//
//
// import people from './pages/user/people.vue'
// Vue.component('people',people)
// 自定义组件
import mySelect from './components/my-componets/my-select.vue'
Vue.component('mySelect', mySelect)
import myImageUpload from './components/my-componets/my-image-upload.vue'
Vue.component('myImageUpload', myImageUpload)
import myPage from './components/my-componets/my-page.vue'
Vue.component('myPage', myPage)
// import basics from './pages/basics/home.vue'
// Vue.component('basics',basics)
import components from './pages/component/home.vue'
Vue.component('components', components)
import plugin from './pages/plugin/home.vue'
Vue.component('plugin', plugin)
import cuCustom from './plugin/colorui/components/cu-custom.vue'
Vue.component('cu-custom', cuCustom)
// import VConsole from './js_sdk/vconsole.min'
// var vConsole = new VConsole();
Vue.config.productionTip = false
App.mpType = 'app'
const app = new Vue({
store,
MinCache,
...App
})
//v1.3.5起 H5端 你应该去除原有的app.$mount();使用路由自带的渲染方式
// #ifdef H5
RouterMount(app, '#app');
// #endif
// #ifndef H5
app.$mount(); //为了兼容小程序及app端必须这样写才有效果
// #endif
此处可能存在不合适展示的内容,页面不予展示。您可通过相关编辑功能自查并修改。
如您确认内容无涉及 不当用语 / 纯广告导流 / 暴力 / 低俗色情 / 侵权 / 盗版 / 虚假 / 无价值内容或违法国家有关法律法规的内容,可点击提交进行申诉,我们将尽快为您处理。