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

}
Logo

前往低代码交流专区

更多推荐