3f535f30
杨鑫
'初始'
|
1
2
3
4
5
6
7
8
9
10
11
12
|
import Vue from 'vue';
import App from './App';
import http from '@/utils/request.js'
import uView from "uview-ui";
// 弹出框
import DialogBox from './components/DialogBox/DialogBox';
Vue.config.productionTip = false
Vue.prototype.$http = http
Vue.prototype.$imgUrl = (url) => {
|
3f535f30
杨鑫
'初始'
|
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
|
// 全局组件
Vue.component('DialogBox', DialogBox);
//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)
App.mpType = 'app'
Vue.use(uView);
const app = new Vue({
...App
})
app.$mount()
|