在浏览器F12下,发现如下报错:
Cannot read properties of undefined (reading 'length')
然后在vscode里对应到的代码是
这种情况怎么解决?
还有另外一个报错我也不知道怎么改
这个报错的位置,实在是找不到啊
有没有老前辈,搭救一下
在浏览器F12下,发现如下报错:
Cannot read properties of undefined (reading 'length')
v-if="good.length"
改成v-if="good && good.length"
试试看