vue 报错未在实例上定义“”,但在渲染过程中引用了该属性
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.(未在实例上定义“”
·
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.(未在实例上定义“”,但在渲染过程中引用了该属性。请通过初始化该属性,确保该属性在“数据”选项中或对于基于类的组件是被动的。)
在vue html中使用一些变量 报错:渲染过程中使用了该属性,但是没有初始化 该属性 确保该属性在“数据”选项中或对于基于类的组件是被动的。
在html中使用了一个变量height 但是报错说没有实例中定义 两种解决方案
1就是在 data rerun中添加一个height
2在props里面添加一个height
height:{
type: Number,
default: null
}
更多推荐
已为社区贡献1条内容
所有评论(0)