Skip to content

Instantly share code, notes, and snippets.

@jacobwyke
Created January 9, 2018 12:28
Show Gist options
  • Save jacobwyke/64265a9ea7997c85fa1e5253c5b14968 to your computer and use it in GitHub Desktop.
Save jacobwyke/64265a9ea7997c85fa1e5253c5b14968 to your computer and use it in GitHub Desktop.
Simple vue.js rendered template component
Vue.component('greeting', {
//Renders:
//<p>Hello World</p>
render(createElement) {
return createElement(
'p',
'Hello World'
);
}
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment