mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-18 17:55:52 +10:00
9 lines
145 B
JavaScript
9 lines
145 B
JavaScript
import './.temp/polyfill'
|
|
import { createApp } from './app'
|
|
|
|
const { app, router } = createApp()
|
|
|
|
router.onReady(() => {
|
|
app.$mount('#app')
|
|
})
|