【vue报错】vue.runtime.esm.js?2b0e:1897 TypeError: Cannot read properties of undefined (reading ‘0‘)
Error in mounted hook: "TypeError: Cannot read properties of undefined (reading '0')"vue.runtime.esm.js?2b0e:1897 TypeError: Cannot read properties of undefined (reading '0')原因:创建DOM元素遍历依赖的 props 数据,而
·
Error in mounted hook: "TypeError: Cannot read properties of undefined (reading '0')"
vue.runtime.esm.js?2b0e:1897 TypeError: Cannot read properties of undefined (reading '0')
原因:
创建DOM元素遍历依赖的 props 数据,而计算过程在挂载完毕之后;
需要将计算过程放到 正确 的生命周期钩子;
解决:
把计算过程放在 created() 周期钩子 可解决
更多推荐
已为社区贡献10条内容
所有评论(0)