Files
vuepress/lib/app/Content.js
T
2018-04-10 20:41:42 -04:00

19 lines
306 B
JavaScript

import { pathToComponentName } from './util'
export default {
functional: true,
props: {
custom: {
type: Boolean,
default: true
}
},
render (h, { parent, props }) {
return h(pathToComponentName(parent.$page.path), {
class: props.custom ? 'custom' : ''
})
}
}