Demo
by Ayo Isaiah
HTML
<script src="https://cdnjs.cloudflare.com/ajax/libs/vue/2.0.3/vue.js"></script>
<div id="demo">
<input type="text" v-model="value">
<br>
<p>{{ value }}</p>
<!-- This stringifies the contents of the data object and displays it on the page -->
<pre>{{ $data }}</pre>
</div>
JavaScript
new Vue({
el: "#demo",
data: {
value: "Hello, how are you?"
}
});