2018-10-29 12:12:36 -07:00

20 lines
309 B
Vue

<script>
export default {
functional: true,
props: {
custom: {
type: Boolean,
default: true
}
},
render(h, { parent, props, data }) {
return h(parent.$page.key, {
todd: "yes",
class: [props.custom ? "custom" : ""],
style: data.style
});
}
};
</script>