watch
完全等效於vue2.0的this.$watch可以偵聽單個資料來源
// 偵聽器的資料來源可以是乙個擁有返回值的getter函式,也可以是ref
const state =
reactive()
;watch((
)=> state.count,
(count, prevcount)
=>
)const count =
ref(0)
watch
(count,
(count, prevcount)
=>
);
watcheffect
立即執行傳入的乙個函式,並響應式追蹤其依賴,並在其依賴變更時重新執行該函式相對於watch而言可以在剛開始的時候就可以執行,而watch只能在資料變化的時候執行
export
default
,setup
(props));
}};
新生命週期函式
可以直接匯入 on*** 一族的函式來註冊生命週期鉤子vue2.0-------------- vue3.0
beforecreate ->使用setup()
created ->使用setup()
beforemount ->onbeforemount
mounted->onmounted
beforeupdate->onbeforeupdate
updated->onupdated
beforedestory->onbeforeunmount
destroyed->onunmounted
errorcaptured->onerrorcaptured
關於EventBus3 0(筆記)
今天在用eventbus的時候,突然發現訊息發不出去了!eventbus的使用本身不難,突然碰到這種情況有點懵逼。google了一下,也沒找到答案。subscribe threadmode threadmode.main fun onhit 1 replacefragment replacefrag...
C Primer Chapter One學習筆記
筆記 1.流 從io裝置上讀入或寫出的字串行,用來說明字元隨時間順序生成或消耗。2.輸入輸出符可連用原因 operator 或operator 返回stream物件。3.要測試程式那個語句出錯,使用cout 4.新建乙個內建型別,如int i 0 最好先初始化,不然用到的時候沒初始化會產生奇怪的錯誤...
BroadcastReceiver學習筆記
需要注意 的是,不要在 onreceive 方法中新增過多的邏輯或者進行任何的耗時操作,因為在廣播接收 器中是不允許開啟執行緒的,當 onreceive 方法執行了較長時間而沒有結束時,程式就會報錯。有序broadcast,sendorderedbroadcast intent,null abort...