Loading... ## 问题描述 模板中使用defineProps定义的props失去响应性,并且父组件更改状态,会产生报错 ``` Cannot read properties of null (reading 'emitsOptions') ``` ## 产生原因 vue3 setup语法糖用解构的方法去接收 props,但这样会让prop丢失响应性 例: ```js const { topicList, caseList } = defineProps({ topicList: { default: () => [], type: Array }, caseList: { default: () => [], type: Array } }) ``` ## 解决方式 正确做法是: ```js const props = defineProps({ topicList: { default: () => [], type: Array }, caseList: { default: () => [], type: Array } }) props.topicList ``` 最后修改:2022 年 12 月 07 日 © 允许规范转载 赞 如果觉得我的文章对你有用,请随意赞赏