Skip to content
On this page

logicNot

Category
Export Size
192 B
Package
@vueuse/math
Last Changed
8 months ago
Alias
not
Related

NOT condition for ref.

Usage

ts
import { logicNot } from '@vueuse/math'
import { whenever } from '@vueuse/core'

const a = ref(true)

whenever(logicNot(a), () => {
  console.log('a is now falsy!')
})
import { logicNot } from '@vueuse/math'
import { whenever } from '@vueuse/core'

const a = ref(true)

whenever(logicNot(a), () => {
  console.log('a is now falsy!')
})

Type Declarations

typescript
/**
 * `NOT` conditions for refs.
 *
 * @see https://vueuse.org/logicNot
 */
export declare function logicNot(v: MaybeComputedRef<any>): ComputedRef<boolean>
export { logicNot as not }
/**
 * `NOT` conditions for refs.
 *
 * @see https://vueuse.org/logicNot
 */
export declare function logicNot(v: MaybeComputedRef<any>): ComputedRef<boolean>
export { logicNot as not }

Source

SourceDocs

Contributors

Curt Grimes
Anthony Fu

Changelog

v8.9.1 on 7/8/2022
1a4e0 - feat(math)!: move logicAnd, logicOr, logicNot to @vueuse/math (#1794)
a9ccc - feat(all): use MaybeComputedRef (#1768)

Released under the MIT License.