Vue的幾種生命週期

2021-10-09 04:22:48 字數 1013 閱讀 6436

1.建立之前

beforecreate(),
2.建立完成

created(),
3.掛載之前

beforemount(),
4.掛載完成

mounted()
5.更新之前

beforeupdate(),
6.更新之後

updated(),
7.銷毀之前

beforedestroy(),
8.銷毀完成

destroyed(),
9.keep-alive快取(頁面加了快取才會執行)

activated(),
頁面第一次載入分別載入如下函式:

beforecreate,created,beforemount,mounted

頁面出現data update操作就會載入如下函式(操作data() }):

beforeupdate,updated

退出,或跳轉此頁面分別載入銷毀函式:

beforedestroy,destroyed

dom 渲染在mounted週期中就已經完成

vue生命週期

beforecreate 元件例項剛剛被建立,屬性都沒有 create 例項已經建立完成,屬性已經繫結 beforemount 模板編譯之前 mounted 模板編譯之後 beforeupdate 元件更新之前 updated 元件更新完畢 beforedestroy 元件銷毀之前 destroye...

vue生命週期

vue把整個生命週期劃分為建立 掛載 更新 銷毀等階段,每個階段都會給一些 鉤子 讓我們來做一些我們想實現的動作。學習例項的生命週期,能幫助我們理解vue例項的運作機制,更好地合理利用各個鉤子來完成我們的業務 我們分別來看看這幾個階段 1.beforecreate 此階段為例項初始化之後,此時的資料...

Vue 生命週期

import vue from vue el root 沒有的話,使用render,繼續沒有,就把el的outerhtml編譯成模板 template temp data beforecreate created el是原來的el beforemount 渲染函式 render h this.tex...