异常记录
[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,因此触发错误警告。