代码demo: // 父组件 html: js: let tableData = ref([]); // 获取评论列表 async function getCommentList() { let res = await api(); tableData.value = res.data } // 子组件 js: const props = defineProps({ tableData: { type: Array, default: () => [], } }); watch( ()=>props.tableData,// 为什么这里不加()=>就无法进入监听? (newVal) => {...}, { deep: true } ); 请教一下子组件的watch不加()=>就无法进入监听?