声明周期函数的新写法
const app = Vue.createApp({
   setup(){
     const {
       ref,
       onBeforeMount,
       onMounted,
       onBeforeUpdate,
       onUpdate,
       onBeforeUnmount,
       onUnmount,
       onRenderTracked, // 每次渲染后重新收集响应式依赖
       onRenderTriggered, //每次触发页面重新渲染时自动执行
    }
     onBeforeMount(()=>{
       console.log(onBeforeMount)
    })
     onMounted(()=>{
       console.log(onMounted)
    })
     onBeforeUpdate(()=>{
       console.log(onBeforeUpdate)
    })
     onUpdate(()=>{
       console.log(onUpdate)
    })
     onBeforeUnmount(()=>{
       console.log(onBeforeUnmount)
    })
     onUnmount(()=>{
       console.log(onUnmount)
    })
     onRenderTracked(()=>{
       console.log(onRenderTracked)
    })
     onRenderTriggered(()=>{
       console.log(onRenderTriggered)
    })
  }
})
 const vm = app.mount('#root');
暂无评论

发送评论 编辑评论


				
|´・ω・)ノ
ヾ(≧∇≦*)ゝ
(☆ω☆)
(╯‵□′)╯︵┴─┴
 ̄﹃ ̄
(/ω\)
∠( ᐛ 」∠)_
(๑•̀ㅁ•́ฅ)
→_→
୧(๑•̀⌄•́๑)૭
٩(ˊᗜˋ*)و
(ノ°ο°)ノ
(´இ皿இ`)
⌇●﹏●⌇
(ฅ´ω`ฅ)
(╯°A°)╯︵○○○
φ( ̄∇ ̄o)
ヾ(´・ ・`。)ノ"
( ง ᵒ̌皿ᵒ̌)ง⁼³₌₃
(ó﹏ò。)
Σ(っ °Д °;)っ
( ,,´・ω・)ノ"(´っω・`。)
╮(╯▽╰)╭
o(*////▽////*)q
>﹏<
( ๑´•ω•) "(ㆆᴗㆆ)
😂
😀
😅
😊
🙂
🙃
😌
😍
😘
😜
😝
😏
😒
🙄
😳
😡
😔
😫
😱
😭
💩
👻
🙌
🖕
👍
👫
👬
👭
🌚
🌝
🙈
💊
😶
🙏
🍦
🍉
😣
Source: github.com/k4yt3x/flowerhd
颜文字
Emoji
小恐龙
花!
上一篇
下一篇