vue的生命週期

2022-07-20 11:15:18 字數 1947 閱讀 7039

生命週期函式代表的是`vue`例項、`vue`元件,在網頁中各個生命階段所執行的函式。生命週期函式可以分為建立階段、執行階段及銷毀階段的函式。這些階段的函式都是和methods同級的,不是寫在methods中。

1)beforecreate:在建立例項前所執行的函式;vue已經建立,但是data和methods都還沒有建立好;

2)created:建立例項後所執行的函式;data和methods已經建立好,可以進行操作了。

3)beforemount:模版經過編譯,還沒有載入到網頁中。

4)mounted:模版經過編譯,且載入到網頁中。

1)beforeupdate:在資料更新但是頁面還有更新前所執行的函式;

2)update:在資料更新且頁面的資料也更新後執行的函式。

1)beforedestroy:vue例項或者是元件在被銷毀之前執行的函式,在這個函式中vue或者元件中的所有屬性都是可以使用的。

2)destroyed:vue例項或者元件被銷毀後執行的。此時,vue例項或者是元件上的所有東西都會解綁,所有事件都會移除,所有子元素都會被銷毀。

doctype html

>

<

html

lang

="en"

>

<

head

>

<

meta

charset

="utf-8"

>

<

meta

name

="viewport"

content

="width=device-width, initial-scale=1.0"

>

<

script

src=""

>

script

>

<

title

>vue生命週期

title

>

head

>

<

body

>

<

div

id>

<

p id

="user"

>}

p>

<

input

type

="text"

v-model

=user

>

學習銷毀階段

<

hr>

}

<

error-view

:message

="message"

v-if

="message"

>

error-view

>

<

button

@click

="message=''"

>清除message

button

>

div>

<

script

>

//用於學習銷毀階段的函式

vue.component(

"error-view

", }ces

<

/p>

`, data()

},beforedestroy() ,

destroyed()

})newvue(,

methods: ,

},beforecreate() ,

created() ,

beforemount() ,

mounted() ,

beforeupdate() ,

updated()

})script

>

body

>

html

>

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...