指南
链接
核心
插件
主题
OR 参考条件。
OR
¥OR conditions for refs.
¥Usage
import { whenever } from '@vueuse/core' import { logicOr } from '@vueuse/math' const a = ref(true) const b = ref(false) whenever(logicOr(a, b), () => { console.log('either a or b is truthy!') })