useMediaQuery ​
Reactive Media Query. Once you've created a MediaQueryList object, you can check the result of the query or receive notifications when the result changes.
Demo ​
isLargeScreen: false
prefersDark: false
Usage ​
js
import { useMediaQuery } from '@vueuse/core'
const isLargeScreen = useMediaQuery('(min-width: 1024px)')
const isPreferredDark = useMediaQuery('(prefers-color-scheme: dark)')
Server Side Rendering and Nuxt ​
If you are using useMediaQuery
with SSR enabled, then you need to specify which screen size you would like to render on the server and before hydration to avoid an hydration mismatch
js
import { breakpointsTailwind, useMediaQuery } from '@vueuse/core'
const isLarge = useMediaQuery(
'(min-width: 1024px)',
{ ssrWidth: 768 } // Will enable SSR mode and render like if the screen was 768px wide
)
console.log(isLarge.value) // always false because ssrWidth of 768px is smaller than 1024px
onMounted(() => {
console.log(isLarge.value) // false if screen is smaller than 1024px, true if larger than 1024px
})
Alternatively you can set this up globally for your app using provideSSRWidth
Type Declarations ​
typescript
/**
* Reactive Media Query.
*
* @see https://vueuse.org/useMediaQuery
* @param query
* @param options
*/
export declare function useMediaQuery(
query: MaybeRefOrGetter<string>,
options?: ConfigurableWindow & {
ssrWidth?: number
},
): ComputedRef<boolean>
Source ​
Contributors ​
Anthony Fu
Antério Vieira
Anthony Fu
Fernando Fernández
Adrien Foulon
Alex
Indrek Ardel
Zhousg
Young
Jelf
Dominik Freier
webfansplz
Eureka
karma
Alex Kozack
Jacob Clevenger
Changelog ​
Pending for release...
v12.3.0
on 1/2/202559f75
- feat(toValue): deprecate toValue
from @vueuse/shared
in favor of Vue's nativev12.1.0
on 12/22/2024v12.0.0-beta.1
on 11/21/2024v10.3.0
on 7/30/2023v10.0.0-beta.4
on 4/13/20234d757
- feat(types)!: rename MaybeComputedRef
to MaybeRefOrGetter
10e98
- feat(toRef)!: rename resolveRef
to toRef
v10.0.0-beta.3
on 4/12/2023