diff --git a/lib/app/Content.js b/lib/app/Content.js index fb123c78..4b3b4c88 100644 --- a/lib/app/Content.js +++ b/lib/app/Content.js @@ -10,9 +10,10 @@ export default { } }, - render (h, { parent, props }) { + render (h, { parent, props, data }) { return h(pathToComponentName(parent.$page.path), { - class: props.custom ? 'custom' : '' + class: [props.custom ? 'custom' : '', data.class, data.staticClass], + style: data.style }) } }