vue监听不到props中的值时

已解决:

watch: {
  data: {
    immediate: true,
    handler: function(newVal) {
      console.log(newVal);
    }
  }
},