pda-uni-app-template/main.js

8 lines
141 B
JavaScript
Raw Normal View History

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