Skip to content

Instantly share code, notes, and snippets.

@jacobwyke
Created January 9, 2018 12:34
Show Gist options
  • Save jacobwyke/8a66ed32bc4cbd0a4d9959f0f28a6fa8 to your computer and use it in GitHub Desktop.
Save jacobwyke/8a66ed32bc4cbd0a4d9959f0f28a6fa8 to your computer and use it in GitHub Desktop.
Vue.js component with render function template with props
Vue.component('greeting', {
//Renders:
//<p>Hello <name></p>
render(createElement) {
return createElement(
'p',
'Hello '+this.name
);
},
prop: ['name']
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment