Last active
February 28, 2018 13:12
-
-
Save kraizt/9678893fdbae4f371215633ef0d36440 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
// html | |
<div id=”app”> | |
<h1>{{ message }}</h1> | |
<input v-model=”message”> | |
</div> | |
//js | |
<script> | |
new Vue({ | |
el: ‘#app’, | |
data: { | |
message: ‘Look ma, i’m dynamically changed!’ | |
} | |
}) | |
</script> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment