Edit in JSFiddle

new Vue({
  el: "#demo",
  data: {
    name: "Ayo Isaiah"
  }
});
<div id="demo">
  <input type="text" v-model="name">
  <br>
  <!-- This stringifies the contents of the data object and displays it on the page -->
  <pre>{{ $data }}</pre>
</div>