roperty or method "isDisplay" 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
时间: 2023-10-06 14:10:18 浏览: 83
Springboot为什么加载不上application.yml的配置文件
这个错误是因为在模板中使用了一个名为 "isDisplay" 的属性或方法,但是在实例中没有定义它。在 Vue.js 中,模板中使用的属性或方法必须在实例的 data 选项中声明,或者在组件中声明为响应式属性。如果你使用的是类组件,则需要使用 @Prop 装饰器声明它。你需要检查一下你的代码,看看是否正确地定义了这个属性或方法,并且是否正确地传递到了模板中。
阅读全文