mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-20 10:45:51 +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')
|
|
})
|