跳到主要內容

logicAnd

類別
匯出大小
149 B
套件
@vueuse/math
上次變更
5 天前
別名
and
相關

refs 的 AND 條件。

用法

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

類型宣告

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

原始碼

原始碼文件

貢獻者

Anthony Fu
Anthony Fu
Curt Grimes
IlyaL

變更日誌

v12.8.0 於 2025/3/5
7432f - feat(types): 棄用 MaybeRefMaybeRefOrGetter,改用 Vue 原生功能 (#4636)
v12.3.0 於 2025/1/2
59f75 - feat(toValue): 棄用 @vueuse/shared 中的 toValue,改用 Vue 原生功能
v12.0.0-beta.1 於 2024/11/21
0a9ed - feat!: 移除 Vue 2 支援,最佳化 bundle 並清理程式碼 (#4349)
v10.0.0-beta.4 於 2023/4/13
4d757 - feat(types)!: 將 MaybeComputedRef 重新命名為 MaybeRefOrGetter
0a72b - feat(toValue): 將 resolveUnref 重新命名為 toValue

根據 MIT 授權條款發布。