1. 程式人生 > 實用技巧 >解決vue中的Error in mounted hook: “TypeError: handler.call is not a function“

解決vue中的Error in mounted hook: “TypeError: handler.call is not a function“

Error in mounted hook: “TypeError: handler.call is not a function”

在進入vue元件頁面時,後臺顯示錯誤

Error in mounted hook: “TypeError: handler.call is not a function”

具體如下圖所示:
錯誤資訊

  • 報錯原因:
    生命週期鉤子函式mounted: {}是否有聲明瞭未定義方法或是隻聲名了鉤子函式。
  • 解決方案:
    1.將mounted: {} 刪除掉
    2. 將mounted: {} 改為mounted(){}