Property "img" was accessed during render but is not defined on instance.
时间: 2023-06-11 18:07:46 浏览: 214
Babel7.x完美解决严格模式报错:’caller’, ‘callee’, and ‘arguments’ properties may not be accessed on strict mode
5星 · 资源好评率100%
这个错误通常是因为在 Vue 组件中,你在模板中使用了一个名为 `img` 的属性,但是在组件的实例中并没有定义这个属性。
你可以检查一下组件中的数据、计算属性和 props,确保没有一个叫做 `img` 的属性。如果你要在模板中使用 `img`,那么你可以考虑改成另一个名字,比如 `imageUrl`。
如果你仍然有疑问,请提供更多的代码和上下文,这样我才能更好地帮助你。
阅读全文