fungsi panah dengan properti yang dihitung vue

<div id="app">
  Name : <input type = "text" v-model = "name" /> <br/><br/>
  My name is : {{getName}}
</div>
    
<script>
new Vue({
  el: '#app',
  data: {
    name:''
  },
  computed:{
    getName: (vm=this) => {         // passing vm = this as parameter
        return vm.name;
    }
  }
});
</script>
Graceful Goat