Skip to content

logicOr

Category
Export Size
95 B
Package
@vueuse/math
Last Changed
4 days ago
Alias
or
Related

OR conditions for refs.

Usage

ts
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!')
})

Type Declarations

ts
/**
 * `OR` conditions for refs.
 *
 * @see https://vueuse.org/logicOr
 *
 * @__NO_SIDE_EFFECTS__
 */
export declare function 
logicOr
(
...
args
:
MaybeRefOrGetter
<any>[]
):
ComputedRef
<boolean>
export {
logicOr
as
or
}

Source

SourceDocs

Contributors

NoiseFan

Changelog

No recent changes

Released under the MIT License.