Skip to content

Instantly share code, notes, and snippets.

@manico
Created March 23, 2018 09:16
Show Gist options
  • Save manico/8fffeae26876ecf4a283a517d7594acc to your computer and use it in GitHub Desktop.
Save manico/8fffeae26876ecf4a283a517d7594acc to your computer and use it in GitHub Desktop.
Vue Render Component
{
mixins: [elementable],
render(createElement) {
return createElement(
"div",
{
style: {
background: "yellow"
}
},
"This is child element"
);
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment