import App from './App' import * as Pinia from 'pinia' import { createSSRApp } from 'vue' import { createUnistorage } from 'pinia-plugin-unistorage' export function createApp() { const app = createSSRApp(App) // pinia数据持久化 const store = Pinia.createPinia() store.use(createUnistorage()) app.use(store) return { app, Pinia } }