Vue.js學習(8)-生命週期函數

1.生命週期函數vue 生命週期函數也叫生命週期鉤子,是組件建立,組件銷燬,組件更新時執行的方法,一共有8個,經常使用的是mounted,destroyed函數 beforeCreate(){       console.log("實例建立前");     },     created(){       console.log("實例已建立");     },     beforeMount(){
相關文章
相關標籤/搜索