8 lines
146 B
Plaintext
8 lines
146 B
Plaintext
import { createSSRApp } from 'vue'
|
|
import App from './App.uvue'
|
|
|
|
export function createApp() {
|
|
const app = createSSRApp(App)
|
|
return { app }
|
|
}
|