报错如图所示:

Property or method “xxx” 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.
属性或方法“xxx”不是在实例上定义的,而是在呈现期间引用的。通过初始化该属性,确保该属性是反应性的,无论是在data选项中,还是在基于类的组件中。

在这里插入图片描述

根据关键词全局搜索发现:

某属性或者某方法没有定义,查看data或者methods或者prop

在这里插入图片描述
解决:

export default {
 data(){
  return{
    xxx:""
  },
 methods:{
    xxx(){}
 }
 },
}

在这里插入图片描述

Logo

前往低代码交流专区

更多推荐