Skip to content

Instantly share code, notes, and snippets.

@nolimits4web
Created May 27, 2018 13:00
Show Gist options
  • Save nolimits4web/37ea4740d23b0660383529dd07b11ad7 to your computer and use it in GitHub Desktop.
Save nolimits4web/37ea4740d23b0660383529dd07b11ad7 to your computer and use it in GitHub Desktop.
Phenome -> Vue Component
export default {
name: 'my-card',
render() {
const _h = this.$createElement;
return _h(
'div',
{
class: 'card',
attrs: {
id: 'some-id',
},
},
_h('p', null, ['This is card'])
)
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment