pet/main.js

34 lines
618 B
JavaScript
Raw Permalink Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

import App from './App'
import uViewNext from '@/uni_modules/uview-next';
import httpConfig from './http/config/request.js';
// #ifndef VUE3
import Vue from 'vue'
import './uni.promisify.adaptor'
Vue.config.productionTip = false
Vue.use(uViewNext)
App.mpType = 'app'
const app = new Vue({
...App
})
// 引入HTTP请求配置将app参数传递到配置中
httpConfig(app)
app.$mount()
// #endif
// #ifdef VUE3
import { createSSRApp } from 'vue'
export function createApp() {
const app = createSSRApp(App)
app.use(uViewNext)
// 引入HTTP请求配置
httpConfig(app)
return {
app
}
}
// #endif