mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-09 21:36:16 +10:00
13 lines
232 B
JavaScript
13 lines
232 B
JavaScript
export default {
|
|
functional: true,
|
|
render (h, { parent, children }) {
|
|
if (parent._isMounted) {
|
|
return children
|
|
} else {
|
|
parent.$once('hook:mounted', () => {
|
|
parent.$forceUpdate()
|
|
})
|
|
}
|
|
}
|
|
}
|