mirror of
https://github.com/wahyd4/vuepress.git
synced 2026-08-17 01:05:51 +10:00
18 lines
301 B
JavaScript
18 lines
301 B
JavaScript
export default {
|
|
functional: true,
|
|
|
|
props: {
|
|
custom: {
|
|
type: Boolean,
|
|
default: true
|
|
}
|
|
},
|
|
|
|
render (h, { parent, props, data }) {
|
|
return h(parent.$page.key, {
|
|
class: [props.custom ? 'custom' : '', data.class, data.staticClass],
|
|
style: data.style
|
|
})
|
|
}
|
|
}
|