解决vue报错(Property or method “main“ is not defined on the instance but referenced during render. Make)
在写案列的时候,不知道怎么回事就忽然报了一个错,虽然不影响整体的效果,但是有个报错,总让人感觉不舒服。在这里就说说报错的解决方法报错如下:Property or method “main” is not defined on the instance but referenced during render. Make sure that this property is reactive, ei
·
在写案列的时候,不知道怎么回事就忽然报了一个错,虽然不影响整体的效果,但是有个报错,总让人感觉不舒服。在这里就说说报错的解决方法
报错如下
:
Property or method “main” 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.
翻译后的结果:
属性或方法“main”未在实例上定义,但在呈现期间被引用。通过初始化属性,确保此属性是被动的,无论是在data选项中,还是对于基于类的组件。
总结报错的原因都有:
- 单词写错
- 未定义
- 。。。。
有错误请查看:
你的“”xxx‘’属性或者"xxx"方法没有定义,查看你的data或者methods或者prop
解决方法:
export default {
data(){
return{
xxx:""
},
methods:{
xxx(){}
}
},
}
更多推荐
已为社区贡献12条内容
所有评论(0)