Skip to content

Instantly share code, notes, and snippets.

@nisabengisu
Created October 14, 2019 11:14
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save nisabengisu/4572262763aa368f23026257f2a47af0 to your computer and use it in GitHub Desktop.
Save nisabengisu/4572262763aa368f23026257f2a47af0 to your computer and use it in GitHub Desktop.
Model
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app-1">
<p>{{ message }}</p>
<input v-model="message">
</div>
<script>
var app6 = new Vue({
el: '#app-1',
data: {
message: 'Hello Vue :)'
}
})
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment