You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
335 B
17 lines
335 B
2 years ago
|
import App from './App'
|
||
|
|
||
|
import Vue from 'vue'
|
||
|
import uView from '@/uni_modules/uview-ui'
|
||
|
import url from './common/url.js'
|
||
|
import * as http from "./common/http.js";
|
||
|
Vue.use(uView)
|
||
|
Vue.config.productionTip = false
|
||
|
Vue.prototype.$url = url
|
||
|
Vue.prototype.$http = http
|
||
|
|
||
|
App.mpType = 'app'
|
||
|
const app = new Vue({
|
||
|
...App
|
||
|
})
|
||
|
app.$mount()
|