1. 程式人生 > >vue元件報錯問題

vue元件報錯問題

Invalid value for option "components": expected an Object, but got Array

出現這個錯誤,檢視一下元件的編寫是否有誤,components應該是一個物件而不是一個數組,如果你寫成了開一個數組,就會報這個錯誤,同時,還會報下面這個錯:

did you register the component correctly? For recursive components, make sure to provide the "name" option

錯誤示例:

components:[
      GoodsTemplate
]

正確示例:

components:{
      GoodsTemplate
}

如果不是這種情況造成的,讀者可以繼續查閱其他相關問題資料。