Vue.js的生命周期有哪些?每个生命周期都有哪些作用?下面web建站小编给大家简单介绍一下!
Vue的生命周期可分为三个阶段:
1.Vue初始化阶段
beforeCreate
:实例刚在内存中被创建出来,未初始化 injections 和 data 等。
created
:实例已经创建完成,data、computed 等都已被初始化好,这时候还未挂载,$el 属性目前不可见。
beforeMount
:模板渲染之前调用,此时 $el 属性还不存在。
mounted
:模板渲染完成,所有子组件也都渲染好了,此时可以通过 DOM API 访问数据。
2.Vue更新阶段
beforeUpdate
:数据更新时调用,发生在虚拟 DOM 打补丁之前。
updated
:有新的虚拟 DOM,在这次更新之后调用。
3.Vue销毁阶段
beforeDestroy
:实例销毁之前调用,这时候实例是完全可用的。
destroyed
:实例销毁后调用,组件相关的所有东西都会被销毁。
Vue生命周期函数的调用顺序:
beforeCreate -> created -> beforeMount -> mounted -> (beforeUpdate -> updated) * -> beforeDestroy -> destroyed
示列如下:
new Vue({ data() { return { msg: 'Hello' } }, beforeCreate() { console.log('beforeCreate') }, created() { console.log('created') }, beforeMount() { console.log('beforeMount') }, mounted() { console.log('mounted') }, beforeUpdate() { console.log('beforeUpdate') }, updated() { console.log('updated') }, beforeDestroy() { console.log('beforeDestroy') }, destroyed() { console.log('destroyed') } })
标签: Vue生命周期
上面是“Vue每个生命周期的作用?”的全面内容,想了解更多关于 vuejs 内容,请继续关注web建站教程。
当前网址:https://ipkd.cn/webs_4972.html
workflows工作流
- 一张精心制作的熊岛复古地图ComfyUI工作流
- 一条色彩斑斓的超现实小孔雀鱼ComfyUI工作流
- 一只可爱的猫骑着一匹可爱的马ComfyUI工作流
- 一只蚂蚁在花丛中找食物ComfyUI工作流
- 图生图生成动漫效果ComfyUI工作流
- 一个质朴的木制窗户上放着各种葫芦、南瓜等
- 一张科幻照片,火星车在沙漠里ComfyUI工作流
- 哈利波特魔法ComfyUI工作流
猜你喜欢
声明:本站提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请发送到邮箱:admin@ipkd.cn,我们会在看到邮件的第一时间内为您处理!