生命周期
生命周期函数
- beforeCreate(创建前) vue 实例的挂载元素$el 和数据对象 data 都是 undefined, 还未初始化
- created(创建后) 完成了 data 数据初始化, el 还未初始化
- beforeMount(载入前) vue 实例的$el 和 data 都初始化了, 相关的 render 函数首次被调用
- mounted(载入后) 此过程中进行 ajax 交互
- beforeUpdate(更新前)
- updated(更新后)
- beforeDestroy(销毁前)
- destroyed(销毁后)