Web/21-Vue基础/生命周期.md
2018-03-29 21:36:22 +08:00

34 lines
464 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

- beforeCreate和created。
created之后就拿到了数据和方法。create一般用来**获取ajax初始化操作**
- beforeMount和mounted。
mounted之后表示**真实DOM渲染完了可以操作DOM了**。
- beforeUpdate和updated
数据发生变化时会触发这两个方法。不过我们一般用watch来做。
- beforeDestory和destoryed
可以在beforeDestory里**清除定时器、或清除事件绑定**。