| 123456789101112131415161718192021 |
- import Vue from 'vue'
- import App from './App'
- import {
- get,
- post,
- request
- } from '@/utils/http'
- Vue.config.productionTip = false
- Vue.prototype.$get = get
- Vue.prototype.$post = post
- Vue.prototype.$request = request
- Vue.config.productionTip = false
- App.mpType = 'app'
- const app = new Vue({
- ...App
- })
- app.$mount()
|