usePreferredContrast
响应式的 prefers-contrast 媒体查询。
Demo
用法
js
import { usePreferredContrast } from '@vueuse/core'
const preferredContrast = usePreferredContrast()
组件使用
vue
<template>
<UsePreferredContrast v-slot="{ contrast }">
首选对比度: {{ contrast }}
</UsePreferredContrast>
</template>
类型声明
typescript
export type ContrastType = "more" | "less" | "custom" | "no-preference"
/**
* 响应式更喜欢的对比度媒体查询。
*
* @see https://vueuse.org/usePreferredContrast
* @param [options]
*/
export declare function usePreferredContrast(
options?: ConfigurableWindow,
): ComputedRef<ContrastType>
Source
贡献者
丶远方
Anthony Fu
Anthony Fu
vaakian X
Zhao