useMediaQueryS
存入预定的屏幕大小区间分类,监听 mediaQuery 状态,自动给出当前屏幕所在分类的key
Demo
xs: (max-width:500px)
sm: (min-width:500px)
md: (min-width:700px)
lg: (min-width:800px)
xl: (min-width:1100px)
xxl: (min-width:1300px)
当前屏幕大小:
Usage
html
<template>
<div>
<div>xs: (max-width:500px)</div>
<div>sm: (min-width:500px)</div>
<div>md: (min-width:700px)</div>
<div>lg: (min-width:800px)</div>
<div>xl: (min-width:1100px)</div>
<div>xxl: (min-width:1300px)</div>
<p>当前屏幕大小: {{ queryKey }}</p>
</div>
</template>
<script lang="ts" setup>
import { watch } from 'vue'
import { useMediaQueryS } from '@morehook/core'
const query = {
xs: '(max-width:500px)',
sm: '(min-width:500px)',
md: '(min-width:700px)',
lg: '(min-width:900px)',
xl: '(min-width:1100px)',
xxl: '(min-width:1300px)'
}
const queryKey = useMediaQueryS(query)
</script>
Type Declarations
typescript
type queryType = {
[key: string]: string
}
/**
* 监听多个 mediaQuery 状态
* @param query 需要监听的阈值对象
* @returns 返回当前满足value设定的 key
*/
export declare function useMediaQueryS(
query: queryType
): Ref<string | undefined>