main.js 388 B

123456789101112131415161718
  1. import { store } from './stores'
  2. import App from './App'
  3. import http from './utils/http'
  4. import config from './utils/config'
  5. import { createSSRApp } from 'vue'
  6. export function createApp() {
  7. const app = createSSRApp(App)
  8. app.use(store)
  9. app.config.globalProperties.$http = http
  10. app.config.globalProperties.$uploadUrl = config.uploadUrl
  11. return {
  12. app,
  13. store
  14. }
  15. }