12345678910111213141516171819202122232425262728 |
- import App from './App'
- // #ifndef VUE3
- import Vue from 'vue'
- import './uni.promisify.adaptor'
- Vue.config.productionTip = false
- App.mpType = 'app'
- //4ebed0e-000a00dc4580b-2d10861-d4781 m钥
- import request from 'utils/request.js'
- Vue.prototype.$http = request.http
- Vue.prototype.$ajax = request.ajax
- Vue.prototype.$http2 = request.http2
- Vue.prototype.$baseURL = request.baseURL
- const app = new Vue({
- ...App
- })
- app.$mount()
- // #endif
- // #ifdef VUE3
- import { createSSRApp } from 'vue'
- export function createApp() {
- const app = createSSRApp(App)
- return {
- app
- }
- }
- // #endif
|