index.vue:162 Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'list') at VueComponent.getComments
时间: 2023-11-08 21:55:27 浏览: 157
Vue打包Cannot read property 'tapPromise' of undefined报错处理.docx
5星 · 资源好评率100%
这个错误信息提示了一个Uncaught (in promise) TypeError: Cannot read properties of undefined (reading 'list')。根据引用内容中的信息,这个错误一般是由于访问未定义的属性而引起的。在这种情况下,请确保你正在访问一个已经定义的属性。你可以检查一下你的代码,看看在index.vue文件的第162行是否正确地定义了'list'属性。
阅读全文