Created
May 27, 2018 13:00
-
-
Save nolimits4web/37ea4740d23b0660383529dd07b11ad7 to your computer and use it in GitHub Desktop.
Phenome -> Vue Component
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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