main.ts 576 B

1234567891011121314151617181920212223
  1. import '@/style/index.scss'
  2. import { VueQueryPlugin } from '@tanstack/vue-query'
  3. import 'virtual:uno.css'
  4. import { createSSRApp } from 'vue'
  5. import App from './App.vue'
  6. import { prototypeInterceptor, requestInterceptor } from './interceptors'
  7. import i18n from './locale/index'
  8. import store from './store'
  9. import Directives from './directives'
  10. export function createApp() {
  11. const app = createSSRApp(App)
  12. app.use(store)
  13. app.use(i18n)
  14. app.use(requestInterceptor)
  15. app.use(prototypeInterceptor)
  16. app.use(VueQueryPlugin)
  17. app.use(Directives)
  18. return {
  19. app,
  20. }
  21. }