Files
vuepress/lib/app/clientEntry.js
T

9 lines
145 B
JavaScript

import './.temp/polyfill'
import { createApp } from './app'
const { app, router } = createApp()
router.onReady(() => {
app.$mount('#app')
})