first vue app

by james gotsell

HTML

<script src="https://unpkg.com/vue">
  
</script>

<div id="app">
    <input type="text" v-on:input="titleChange">
   <p>{{ title }}</p>
</div>

JavaScript

new Vue ({
	el: '#app',
  data: {
  	title: 'boomting'
  },
  methods: {
  		titleChange: function (event) {
          this.title = event.target.value;
      }
  }
})