前端常见面试题:vue的生命周期

一.vue的生命周期:
1.vue从创建到销毁的过程就是vue的生命周期。
2.常见状态有mounted(载入后). beforeDestory(销毁前). destoryed(销毁后)三个状态。
二. vue的生命周期有哪些阶段:
beforeCreate(创建前)—》created(创建后)—》beforeMounte(载入前)—》mounted(载入后)—》beforeUpdate(更新前)—》updated(更新后)—》beforeDestory(销毁前)—》destoryed(销毁后)

发布了64 篇原创文章 · 获赞 0 · 访问量 1645

猜你喜欢

转载自blog.csdn.net/lucky_girl_girl/article/details/104334015