Last active
May 10, 2017 07:27
-
-
Save vuejsdevelopers/ce26e093ec5b0cf82fe2c2f18d8c5beb to your computer and use it in GitHub Desktop.
What I Learned About VueJS From Building A Chrome Extension - Snippet 03
This file contains 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
<body> | |
<div id="app"> | |
<div>{{ message }}</div> | |
</div> | |
</body> |
This file contains 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
new Vue({ | |
el: '#app' | |
}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment