A Pen by Robbert Wolfs on CodePen.
Created
January 11, 2017 22:04
-
-
Save RobbertWolfs/c7963b41b9e1501f59917d087b59868f to your computer and use it in GitHub Desktop.
YNqqRJ
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
<div id="app"> | |
<p> {{ message }} </p> | |
</div> |
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
const app = new Vue({ | |
el: '#app', | |
data: { | |
message: 'Hello World', | |
}, | |
}); |
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
<script src="https://unpkg.com/[email protected]/dist/vue.js"></script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment