Skip to content

logicNot ​

Category
Export Size
109 B
Package
@vueuse/math
Last Changed
5 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!')
})

Source ​

Source • Docs

Contributors ​

Anthony Fu
Curt Grimes

Changelog ​

v10.0.0-beta.4 on 4/13/2023
4d757 - feat(types)!: rename MaybeComputedRef to MaybeRefOrGetter
0a72b - feat(toValue): rename resolveUnref to toValue
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.