16 lines
262 B
Plaintext
16 lines
262 B
Plaintext
|
|
import { createSSRApp } from 'vue'
|
||
|
|
import App from './App.vue'
|
||
|
|
import { createPinia } from 'pinia'
|
||
|
|
|
||
|
|
export function createApp(): UTSJSONObject {
|
||
|
|
const app = createSSRApp(App)
|
||
|
|
const pinia = createPinia()
|
||
|
|
|
||
|
|
app.use(pinia)
|
||
|
|
|
||
|
|
return {
|
||
|
|
app,
|
||
|
|
pinia
|
||
|
|
}
|
||
|
|
}
|