Skip to content

Instantly share code, notes, and snippets.

@renanccastro
Created July 4, 2016 23:56
Show Gist options
  • Save renanccastro/2d53437ff684fd1cc8ccf748f9ca1570 to your computer and use it in GitHub Desktop.
Save renanccastro/2d53437ff684fd1cc8ccf748f9ca1570 to your computer and use it in GitHub Desktop.
<div id="demo">
<p>{{message}}</p>
<input v-model="message">
</div>
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