mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 05:16:23 +10:00
- fix($core): markdown slot doesn‘t work. (regression of c85f62d)
- docs: fresh Node.JS API.
- test: official plugins.
15 lines
276 B
JavaScript
15 lines
276 B
JavaScript
/* global VUEPRESS_VERSION, LAST_COMMIT_HASH*/
|
|
|
|
import { createApp } from './app'
|
|
|
|
const { app, router } = createApp(false /* isServer */)
|
|
|
|
window.__VUEPRESS_VERSION__ = {
|
|
version: VUEPRESS_VERSION,
|
|
hash: LAST_COMMIT_HASH
|
|
}
|
|
|
|
router.onReady(() => {
|
|
app.$mount('#app')
|
|
})
|