1234567891011121314151617181920212223 |
- import '@/style/index.scss'
- import { VueQueryPlugin } from '@tanstack/vue-query'
- import 'virtual:uno.css'
- import { createSSRApp } from 'vue'
- import App from './App.vue'
- import { prototypeInterceptor, requestInterceptor } from './interceptors'
- import i18n from './locale/index'
- import store from './store'
- import Directives from './directives'
- export function createApp() {
- const app = createSSRApp(App)
- app.use(store)
- app.use(i18n)
- app.use(requestInterceptor)
- app.use(prototypeInterceptor)
- app.use(VueQueryPlugin)
- app.use(Directives)
- return {
- app,
- }
- }
|