Created
July 4, 2016 23:56
-
-
Save renanccastro/2d53437ff684fd1cc8ccf748f9ca1570 to your computer and use it in GitHub Desktop.
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="demo"> | |
<p>{{message}}</p> | |
<input v-model="message"> | |
</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
var demo = new Vue({ | |
el: '#demo', | |
data: { | |
message: 'Hello Vue.js!' | |
} | |
}) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment