vue生命週期 鉤子函數

vue生命週期圖示 跳轉連接html

 

 1 beforeCreate(){
 2     console.log('組件實例化以前')
 3 },
 4 created(){
 5     console.log('組件實例化完畢,單頁面還未顯示')
 6 },
 7 beforeMount(){
 8     console.log('組件掛載前,頁面仍未展現,但虛擬Dom已經配置')
 9 },
10 mounted(){
11     console.log('組件掛在後,此方法執行後,頁面顯示')
12 },
13 beforeUpdate(){
14     console.log('組件更新前,頁面仍未更新,但虛擬Dom已經配置')
15 },
16 updated(){
17     console.log('組件更新,此方法執行後,頁面顯示')
18 },
19 beforeDestroy(){
20     console.log('組件銷燬前')
21 },
22 destroyed(){
23     console.log('組件銷燬')
24 },

 

各個鉤子函數執行時瀏覽器對應作了什麼vue

beforeCreate  --------- 組件實例化以前瀏覽器

created  --------- 組件實例化完畢,單頁面還未顯示ide

beforeMount  --------- 組件掛載前,頁面仍未展現,但虛擬DOM已經配置函數

mounted  --------- 組件掛載後,此方法執行後,頁面顯示ui

beforeUpdate  --------- 組件更新前,頁面仍未更新,但虛擬Dom已經配置spa

updated  --------- 組件更新,此方法執行後,頁面顯示code

beforeDestroy  --------- 組件銷燬前htm

destroyed  --------- 組件銷燬blog

 

組件實例化以前
相關文章
相關標籤/搜索