04. computed方法生成计算属性

基本用法

const App = Vue.createApp({
   setup(){
       const {ref,computed} = Vue;
       const count = ref(0);
       const handleClick = ()=>{
           count.value += 1
      }
       const countAddFive = computed(()=>{
           return count.value + 5
      })
       return {
           count,
           handleClick
      }
  },
   template:`
<div>
<span @click="handleClick">{{count}}</span> ---{{countAddFive}}
</div>
`
})

复杂用法

const App = Vue.createApp({
   setup(){
       const {ref,computed} = Vue;
       const count = ref(0);
       const handleClick = ()=>{
           count.value + 1
      }
       const handAddFive = computed({
           get:()=>{
               return count.value + 1;
          },
           set:(params)=>{
               count.value = params + 10
          }
      })
       setTimeout(()=>{
           countAddFive.value = 100
      },3000)
       return {
           count,
           handleClick,
           handAddFive
      }
  },
   template:`
<div>
<span @click="handleClick">{{count}}</span> ---{{countAddFive}}
</div>
`
   
})
暂无评论

发送评论 编辑评论


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