VUE3 + Ant Design Vue4 开发笔记
异常记录
[Vue warn]: Extraneous non-props attributes (options) were passed to component but could not be automatically inherited because component renders fragment or text root nodes
定位原因+解决方法
错误的中文释义:[Vue 警告]:传递给组件的额外非 prop 属性(options)无法自动继承,因为组件渲染的是片段或文本根节点。
触发位置
向上检查
修改代码
const options = defineModel<any[]>('options')
因为table-work-list.vue中v-model绑定的属性值的key为value,而被使用的时候用的是options,因此触发错误警告。
原文地址:https://blog.csdn.net/Franciz777/article/details/145148856
免责声明:本站文章内容转载自网络资源,如本站内容侵犯了原著者的合法权益,可联系本站删除。更多内容请关注自学内容网(zxcms.com)!