觸發條件: 當元件銷毀時
beforedestroy
destroyed
這兩個鉤子功能一致的,這兩個鉤子沒有太大的區別
作用:
用來做善後的,比如計時器的關閉 第三方例項的刪除
1. 通過開關的形式 - 外部銷毀
>
切換 button
>
hello
>
div>
"hello"
>
>
hello
div>
template
>
vue.
component
('hello',,
1000)}
,beforedestroy()
,destroyed()
})newvue(}
)
2. 通過呼叫 $destroy 方法 - 內部銷毀>
>
hello
>
div>
"hello"
>
class
="hello-box"
>
銷毀 button
>
hello
div>
template
>
vue.
component
('hello',}
,mounted()
,1000)}
,beforedestroy()
,destroyed()
})newvue(}
)
對比: 內部銷毀 vs 外部銷毀外部銷毀不僅能銷毀元件,也能銷毀該元件的dom結構
內部銷毀只能銷毀元件,不能銷毀元件的dom結構
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...