Files
bidding_watcher/uni-app-version/src/main.ts

10 lines
151 B
TypeScript
Raw Normal View History

import { createSSRApp } from 'vue'
import App from './App.vue'
export function createApp() {
const app = createSSRApp(App)
return {
app
}
}