unibest/src/main.ts

9 lines
151 B
TypeScript
Raw Normal View History

2023-12-21 15:52:49 +08:00
import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return {
app,
}
}