Skip to content

Instantly share code, notes, and snippets.

@vuejsdevelopers
Created May 10, 2017 07:26
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save vuejsdevelopers/380b7d1c3fec86a09f78ac011eb43ecf to your computer and use it in GitHub Desktop.
Save vuejsdevelopers/380b7d1c3fec86a09f78ac011eb43ecf to your computer and use it in GitHub Desktop.
What I Learned About VueJS From Building A Chrome Extension - Snippet 04
<body>
<div id="app"></div>
</body>
new Vue({
render (createElement) {
return createElement('div', this.message)
}
}).$mount('#app');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment