UNPKG

@mini-umi/preset-umi

Version:
11 lines (7 loc) 225 B
import { createApp } from './main' const { app, router } = createApp() // wait until router is ready before mounting to ensure hydration match router.isReady().then(() => { app.mount('#app') console.log('hydrated') })