13 lines
255 B
JavaScript
13 lines
255 B
JavaScript
import App from './App'
|
|
import { createSSRApp } from 'vue'
|
|
import pinia from './store'
|
|
import myComponents from "@/components"
|
|
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
app.use(myComponents)
|
|
app.use(pinia)
|
|
return {
|
|
app
|
|
}
|
|
} |