Skip to content

logicAnd

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

AND condition for refs.

Usage

ts
import { 
whenever
} from '@vueuse/core'
import {
logicAnd
} from '@vueuse/math'
const
a
=
ref
(true)
const
b
=
ref
(false)
whenever
(
logicAnd
(
a
,
b
), () => {
console
.
log
('both a and b are now truthy!')
})

Type Declarations

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

Source

SourceDocs

Contributors

NoiseFan

Changelog

No recent changes

Released under the MIT License.