赞
踩
一、问题描述
在之前的项目开发中,也遇到了这样的一个问题, Property or method "list" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property.
如图所示:
二、问题解决
这个问题的意思是 属性或方法“list”
未在实例上定义,但在渲染期间被引用。通过初始化该属性,确保该属性是被动的,无论是在数据选项中,还是对于基于类的组件。所以,由此我们就知道了,在vue
的template
中我们使用了list
数据,但是在data
中还并没有被定义,就被使用了,造成了这个错误。在data
中定义一下这个list
的数据,就可以解决这个问题了。
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。