vue two way binding example
by hasandag
HTML
<script src="https://unpkg.com/vue"></script>
<div id="app">
<input type="text" v-model="message">
<p>
{{ message}}
</p>
</div>
CSS
.updated {
color: white;
background-color: yellow;
}
JavaScript
new Vue({
el: '#app',
data: {
message: 'Hello there'
}
});