日韩性视频-久久久蜜桃-www中文字幕-在线中文字幕av-亚洲欧美一区二区三区四区-撸久久-香蕉视频一区-久久无码精品丰满人妻-国产高潮av-激情福利社-日韩av网址大全-国产精品久久999-日本五十路在线-性欧美在线-久久99精品波多结衣一区-男女午夜免费视频-黑人极品ⅴideos精品欧美棵-人人妻人人澡人人爽精品欧美一区-日韩一区在线看-欧美a级在线免费观看

歡迎訪問 生活随笔!

生活随笔

當前位置: 首頁 > 前端技术 > vue >内容正文

vue

Vue js 的生命周期(看了就懂)

發布時間:2025/7/25 vue 50 豆豆
生活随笔 收集整理的這篇文章主要介紹了 Vue js 的生命周期(看了就懂) 小編覺得挺不錯的,現在分享給大家,幫大家做個參考.

轉自:?https://blog.csdn.net/qq_24073885/article/details/60143856

用Vue框架,熟悉它的生命周期可以讓開發更好的進行。

首先先看看官網的圖,詳細的給出了vue的生命周期:

?

它可以總共分為8個階段:

beforeCreate(創建前),

created(創建后),

beforeMount(載入前),

mounted(載入后),

beforeUpdate(更新前),

updated(更新后),

beforeDestroy(銷毀前),

destroyed(銷毀后)

然后用一個實例的demo 來演示一下具體的效果:

<div id=app>{{a}}</div>

<script>

var myVue = new Vue({ ? ? ? ? ?

el: "#app", ? ? ? ? ?

data: {

a: "Vue.js" ? ? ? ?

}, ? ? ? ??

?beforeCreate: function() {?

? ? ? ? ? console.log("創建前") ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ??

?created: function() {

? ? ? ? ? ? ? ? console.log("創建之后"); ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ??

?beforeMount: function() { ? ? ? ? ? ?

console.log("mount之前") ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ? ?

mounted: function() { ? ? ? ? ? ?

console.log("mount之后") ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ? ?

beforeUpdate: function() { ? ? ? ? ? ?

console.log("更新前"); ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ? ?

updated: function() { ? ? ? ? ? ?

console.log("更新完成"); ? ? ? ? ? ?

console.log(this.a); ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ? ?

beforeDestroy: function() { ? ? ? ? ? ?

console.log("銷毀前"); ? ? ? ? ? ?

console.log(this.a) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

}, ? ? ? ? ?

destroyed: function() { ? ? ? ? ??

console.log("已銷毀"); ? ? ? ? ?

console.log(this.a) ? ? ? ? ?

console.log(this.$el) ? ? ? ? ?

} ??

? }); ?

</script>

?

?

?

運行后,查看控制臺,

得到這個:

然后再methods 里面添加一個change方法:

<div id=app>{{a}}
<button v-on:click="change">change</button>
</div>

點擊按鈕之后出現的是:

這就是vue的生命周期.

?

轉載于:https://www.cnblogs.com/JQstronger/p/vue_shengmingzhouqi.html

總結

以上是生活随笔為你收集整理的Vue js 的生命周期(看了就懂)的全部內容,希望文章能夠幫你解決所遇到的問題。

如果覺得生活随笔網站內容還不錯,歡迎將生活随笔推薦給好友。