Skip to content

Instantly share code, notes, and snippets.

@aliafshar
Last active December 6, 2016 10:04
Show Gist options
  • Select an option

  • Save aliafshar/8fbea7fbd3c368bf5b5ceb8daabfbf2c to your computer and use it in GitHub Desktop.

Select an option

Save aliafshar/8fbea7fbd3c368bf5b5ceb8daabfbf2c to your computer and use it in GitHub Desktop.
Easy web components with Vue.js
<html>
<template id="myAwesomeComponent">
<h1>I am awesome</h1>
<p>You are awesome too.</p>
<p>{{ message }}</p>
</template>
<div id="myAwesomePage">
<my-awesome-component></my-awesome-component>
</div>
</html>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment