您好,登錄后才能下訂單哦!
本篇文章為大家展示了Vue的生命周期有哪些,內容簡明扼要并且容易理解,絕對能使你眼前一亮,通過這篇文章的詳細介紹希望你能有所收獲。
具體如下:
<!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>Vue的生命周期</title> <script type="text/javascript" src="https://cdn.bootcss.com/vue/2.6.10/vue.min.js"></script> </head> <body> <h2>Vue的生命周期</h2> <hr> <div id="app"> {{count}} <p><button @click="add">Add</button></p> </div> <button οnclick="app.$destroy()">銷毀</button> </body> </html> <script> var app = new Vue({ el:'#app', data:{ count:1 }, methods:{ add:function () { this.count++ } }, //有這么多鉤子函數 一共十個 //初始化之后 beforeCreate:function(){ console.log('1-beforeCreate 初始化之后'); }, //創建完成 created:function(){ console.log('2-created 創建完成'); }, //掛載之前 beforeMount:function(){ console.log('3-beforeMount 掛載之前'); }, //被創建 mounted:function(){ console.log('4-mounted 被創建'); }, //數據更新前 beforeUpdate:function(){ console.log('5-beforeUpdate 數據更新前'); }, //被更新后 updated:function(){ console.log('6-updated 被更新后'); }, // activated:function(){ console.log('7-activated'); }, // deactivated:function(){ console.log('8-deactivated'); }, //銷毀之前 beforeDestroy:function(){ console.log('9-beforeDestroy 銷毀之前'); }, //銷毀之后 destroyed:function(){ console.log('10-destroyed 銷毀之后') } }) </script>
運行結果:
上述內容就是Vue的生命周期有哪些,你們學到知識或技能了嗎?如果還想學到更多技能或者豐富自己的知識儲備,歡迎關注億速云行業資訊頻道。
免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。