acdr/acdr-ui/src/main.ts

25 lines
578 B
TypeScript
Raw Normal View History

2024-09-02 07:40:26 +08:00
import { createSSRApp } from 'vue'
import App from './App.vue'
import store from './store' // 这里导入上面定义的 store
import { routeInterceptor, requestInterceptor, prototypeInterceptor } from './interceptors'
import 'virtual:uno.css'
import '@/style/index.css'
2024-09-05 14:05:15 +08:00
import { setupPinia } from './sheep/store'
2024-09-02 07:40:26 +08:00
export function createApp() {
const app = createSSRApp(App)
// 使用 Pinia 存储
app.use(store)
2024-09-05 14:05:15 +08:00
// setupPinia(app)
2024-09-02 07:40:26 +08:00
// 其他插件
app.use(routeInterceptor)
app.use(requestInterceptor)
app.use(prototypeInterceptor)
return {
app,
}
}