生命週期 四個階段 建立 掛載 更新 銷毀
建立creat:僅建立了new
vue(
)或元件物件,同時建立了元件物件中的data物件
使用:前:
beforecreat
() 後:creatd
() 比如可做this
.axios.get
掛載mount:開始掃瞄dom樹,形成虛擬dom樹,並首次替換繫結內容為data中的變數值
使用:前:
beforemount
() 後:mountd
() 可做dom操作
更新update:在任何位置修改了data中的變數值,都會觸發更新階段
使用:前:
beforeupdate
() 後:updated()
銷毀destro:當我們離開這個頁面的時候,便會呼叫這個函式
使用:前:
beforedestroy
() 後:destroyed
()
銷毀 destro
destroyed()
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...