PHP前端开发

vue2的生命周期函数有哪些

百变鹏仔 2个月前 (10-30) #前端问答
文章标签 周期函数
vue.js 2 提供以下生命周期函数:创建前:beforecreate、created挂载前:beforemount、mounted更新前:beforeupdate、updated销毁前:beforedestroy、destroyed错误处理:errorcaptured(仅开发模式)自定义(仅 keep-alive 组件):activated、deactivated

Vue.js 2 生命周期函数

Vue.js 2 中提供了以下生命周期函数:

创建前 生命周期函数

挂载前 生命周期函数

立即学习“前端免费学习笔记(深入)”;

更新前 生命周期函数

销毁前 生命周期函数

错误处理 生命周期函数

自定义生命周期函数

Vue.js 2 还允许您定义自定义生命周期函数: