Vue生命周期

2020-12-01  本文已影响0人  wendy__xu

Vue生命周期

实例生命周期钩子

每个Vue实例在被创建时都要经过一系列的初始化过程。

8种钩子函数

lifecycle.png

注:

不要在选项 property 或回调上使用箭头函数,比如 created: () => console.log(this.a)vm.$watch('a', newValue => this.myMethod())。因为箭头函数并没有 thisthis 会作为变量一直向上级词法作用域查找,直至找到为止,经常导致 Uncaught TypeError: Cannot read property of undefinedUncaught TypeError: this.myMethod is not a function 之类的错误。

上一篇下一篇

猜你喜欢

热点阅读