TypeError: Cannot read properties of undefined (reading 'inputValue') at index.vue:25:29
时间: 2023-11-02 20:00:37 浏览: 140
vue中提示$index is not defined错误的解决方式
5星 · 资源好评率100%
这个错误发生在行25的index.vue文件中,原因是app未定义赋值导致无法读取inputValue属性。解决方法是确保app被正确定义和赋值。另外,你可以使用修改后的写法来避免这个错误,即在读取scope.row[index].value之前先检查scope.row[index]是否存在。你可以将代码修改为以下形式:
<span>{{scope.row[index] && scope.row[index].value}}</span>
阅读全文