Last active
December 6, 2016 10:04
-
-
Save aliafshar/8fbea7fbd3c368bf5b5ceb8daabfbf2c to your computer and use it in GitHub Desktop.
Easy web components with Vue.js
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
| <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