main.uts 320 字节
Newer Older
Y
init  
yurj26 已提交
1 2 3 4 5 6 7 8 9 10 11 12
import App from './App'
import PageHead from './components/page-head/page-head'
import ULink from './components/u-link/u-link'
import { createSSRApp } from 'vue'
export function createApp() {
  const app = createSSRApp(App)
  app.component('page-head', PageHead)
  app.component('u-link', ULink)
  return {
    app
  }
}