Property or method “option“ is not defined on the instance but referenced during render. Make sure t

柒個M發表於2020-11-19

完整的報錯資訊如下:

原因:
你的“”xxx‘’屬性或者"xxx"方法沒有定義,檢視你的data或者methods或者prop
解決:

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

 

相關文章