computedEager
即时计算的计算属性,没有延迟评估。
TIP
注意💡:如果您使用的是 Vue 3.4+,您可以立即使用 computed
。在 Vue 3.4+ 中,如果计算的新值没有变化,computed
、effect
、watch
、watchEffect
、render
的依赖将不会被触发。 参考:https://github.com/vuejs/core/pull/5912
在 Vue:When a computed property can be the wrong tool 中了解更多。
- 当你进行复杂的计算时,可以受益于缓存和延迟评估,并且只有在确实需要时才应该 (重新) 计算时,请使用
computed()
。 - 当你有一个简单的操作,并且返回值很少更改时,请使用
computedEager()
,通常是一个布尔值。
示例
用法
js
import { computedEager } from '@vueuse/core'
const todos = ref([])
const hasOpenTodos = computedEager(() => !!todos.length)
console.log(hasOpenTodos.value) // false
toTodos.value.push({ title: 'Learn Vue' })
console.log(hasOpenTodos.value) // true
类型声明
typescript
/**
* 注意: 如果你正在使用 Vue 3.4+,你可以直接使用 computed。
* 因为在 Vue 3.4+ 中,如果计算属性的新值没有变化,
* computed、effect、watch、watchEffect、render 的依赖关系将不会触发。
* 参考: https://github.com/vuejs/core/pull/5912
*
* @param fn effect function
* @param options WatchOptionsBase
* @returns 只读的 ref
*/
export declare function computedEager<T>(
fn: () => T,
options?: WatchOptionsBase,
): Readonly<Ref<T>>
export { computedEager as eagerComputed }
源码
贡献者
Anthony Fu
一纸忘忧
briwa
Anthony Fu
Doctorwu
Jonathan Tovar Diaz
wheat