指南
链接
核心
插件
主题
Ref 的非无效检查类型保护。
¥Non-nullish checking type guard for Ref.
¥Usage
import { isDefined } from '@vueuse/core' const example = ref(Math.random() ? 'example' : undefined) // Ref<string | undefined> if (isDefined(example)) example // Ref<string>