vue3中computed的写法
时间: 2023-05-20 22:01:10 浏览: 125
vue3三本學習英文書
在Vue3中,computed的写法与Vue2有所不同。在Vue3中,我们可以使用新的函数API来定义computed属性,例如:
```
import { computed } from 'vue'
export default {
setup() {
const count = ref(0)
const doubleCount = computed(() => count.value * 2)
return {
count,
doubleCount
}
}
}
```
在这个例子中,我们使用`computed`函数来定义一个名为`doubleCount`的计算属性,它的值是`count`的两倍。注意,在Vue3中,我们需要使用`ref`函数来创建响应式数据。
阅读全文