1. 程式人生 > >vue箭頭函數註意事項

vue箭頭函數註意事項

method zh-cn this pro 註意事項 watch fin undefine define

不要在選項屬性或回調上使用箭頭函數,

比如 created: () => console.log(this.a)vm.$watch(‘a‘, newValue => this.myMethod())

因為箭頭函數是和父級上下文綁定在一起的,this 不會是如你所預期的 Vue 實例,經常導致 Uncaught TypeError: Cannot read property of undefinedUncaught TypeError: this.myMethod is not a function 之類的錯誤。

vue箭頭函數註意事項