其他分享
首页 > 其他分享> > vue生命周期函数

vue生命周期函数

作者:互联网


beforeCreate -> 使用steup() // vue对象创建成功之前
★created -> 使用setup() // vue对象创建成功之后(页面一访问,一加载)

beforeMount -> onBeforMount // view与model绑定成功之前
★mounted -> onMounted //view 与model绑定成功之后

beforUpdate -> onBeforeUpdate // view或model数据更新之前
★updated -> onUpdated // view或model数据更新之后

beforeDestroy -> onBeforeUnmount // vue对象销毁之前
destroyed -> onUnmounted // vue对象销毁之后

标签:生命,vue,对象,周期函数,成功,之前,model,view
来源: https://www.cnblogs.com/ran777/p/16260615.html