2024-11-18 09:05:38 +08:00
|
|
|
import { createSSRApp } from 'vue'
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import pinia from './stores/index'
|
|
|
|
|
|
|
|
|
|
import '@/styles/reset.css'
|
|
|
|
|
import '@/styles/common.scss'
|
2025-05-15 13:41:01 +08:00
|
|
|
import "default-passive-events";
|
2024-11-18 09:05:38 +08:00
|
|
|
|
|
|
|
|
export function createApp() {
|
|
|
|
|
const app = createSSRApp(App)
|
|
|
|
|
app.use(pinia)
|
|
|
|
|
return {
|
|
|
|
|
app,
|
|
|
|
|
}
|
|
|
|
|
}
|