A tiny, performant, and intuitive Vue 3 plugin for working with responsive breakpoints and media queries at runtime.
- Zero dependencies: lightweight with no external dependencies
- Optimal runtime performance: leverages native
window.matchMedia
for efficient updates, hundreds of times lighter thanresize
event listeners - Comprehensive media query support: reacts to changes in viewport width,
orientation
,hover
capability, and user preferences (prefers-color-scheme
,prefers-contrast
andprefers-reduced-motion
) - SSR Ready: Works seamlessly in server-side rendered applications
- Flexible API access: provides both a globally available
$matches
object (for templates) and auseMatches()
composable (for<script setup>
) - Full TypeScript support: offers excellent DX (developer experience) with full type inference and autocompletion
- Predefined breakpoint presets: includes common presets like Bootstrap, Tailwind CSS, Material Design, and more for quick setup
- Custom breakpoints definition: Define your own bespoke responsiveness intervals with ease
- Thorough cleanup: All listeners are automatically garbage collected when the app unmounts, preventing memory leaks
pnpm install vue-responsiveness
yarn add vue-responsiveness
npm i vue-responsiveness
This plugin provides reactive access to various media queries, making it easy to adapt your Vue components to different screen sizes and user preferences. You can access the responsiveness state through a global property ($matches
) or using a composable function (useMatches()
).
The default breakpoint preset is set to Bootstrap 5. To use a different preset, or to define your own bespoke intervals, see Breakpoint Management section below.
import { createApp } from 'vue'
import App from './App.vue'
import { VueResponsiveness } from 'vue-responsiveness'
createApp()
.use(VueResponsiveness) // Uses Bootstrap 5 presets when no config specified
.mount('#app')
Accessible directly within any Vue component's <template />
. Ideal for simple conditional rendering.
<template>
<div class="my-responsive-component">
<h2>Current Breakpoint: {{ $matches.current || 'N/A' }}</h2>
<p v-if="$matches.sm.min">This content shows on small screens and larger.</p>
<p v-if="$matches.md.max">This content shows on medium screens and smaller.</p>
<div v-if="$matches.lg.only" class="bg-blue-100 p-4">
You are currently on a large desktop screen.
</div>
<p v-if="$matches.orientation === 'portrait'">Device is in portrait mode.</p>
<p v-if="$matches.hover === 'none'">You are on a touch-only device.</p>
<p v-if="$matches.prefers.colorScheme === 'dark'">Dark mode is preferred.</p>
<p v-if="$matches.prefers.reducedMotion === 'reduce'">User prefers reduced motion.</p>
</div>
</template>
Use this composable within <script setup>
or setup()
function for reactive access to the plugin's state.
import { computed } from 'vue'
import { useMatches } from 'vue-responsiveness'
const matches = useMatches()
// Example computed properties based on responsiveness state
const isMobile = computed(() => matches.sm.max) // Roughly small screens and below
const prefersDarkMode = computed(() => matches.prefers.colorScheme === 'dark')
// You can also use the helper functions:
const trueOnMdAndAbove = computed(() => matches.isMin('md'))
const trueOnSmOnly = computed(() => matches.isOnly('sm'))
The plugin comes with a variety of predefined breakpoint presets from popular CSS frameworks.
By default, Presets.Bootstrap_5
(see details) is used if no argument is provided to app.use(VueResponsiveness)
.
Bootstrap_5 preset details:
Presets.Bootstrap_5 = {
xs: 0,
sm: 576,
md: 768,
lg: 992,
xl: 1200,
xxl: 1400,
}
import { VueResponsiveness, Presets } from "vue-responsiveness";
app.use(VueResponsiveness, Presets.Tailwind_CSS)
Here's the list of currently available presets:
Bootstrap_3
, Bootstrap_4
, Bootstrap_5
, Bulma
, Chakra
, Foundation
, Ionic
, Master_CSS
, Material_Design
, Materialize
, Material_UI
, Quasar
, Semantic_UI
, Skeleton
, Tailwind_CSS
, Vuetify
, Windi_CSS
- Note: This plugin is designed to have a single, app-wide instance of its responsiveness state. This ensures optimal performance by minimizing listeners and memory footprint. It also provides a consistent
$matches
object oruseMatches()
composable throughout your application. Therefore, defining multiple presets in different parts of your app is not supported and is an intentional design choice.
You can define your own set of breakpoint intervals by passing an object to the plugin. The keys will be your custom breakpoint names, and the values will be their min-width
(in pixels). The plugin automatically calculates the max-width
for each interval.
app.use(VueResponsiveness, {
small: 0,
medium: 777,
large: 1234
})
<!-- @media (min-width: 777px) and (max-width: 1233.9px) -->
<template v-if="$matches.medium.only">
...content
</template>
The global $matches
object (and the object returned by useMatches()
) provide the following properties and helper methods:
These properties reflect the current viewport width relative to the defined breakpoints. Each breakpoint key (e.g., sm
, md
, lg
, or your custom keys) holds an object with min
, max
, and only
boolean flags.
Name | Type | Description | Example Access |
---|---|---|---|
current |
string |
The name (key ) of the breakpoint interval that currently matches the viewport's only condition. |
$matches.current |
[breakpointKey].min |
boolean |
true if current viewport width is greater than or equal to the breakpoint's minimum value |
$matches.md.min |
[breakpointKey].max |
boolean |
true if current viewport width is less than the breakpoint's maximum value |
$matches.lg.max |
[breakpointKey].only |
boolean |
true if current viewport width is within the breakpoint's minimum and maximum values (exclusive of max) |
$matches.sm.only |
These allow creating custom computed based on current viewport width and breakpoints.
Name | Type | Description | Example usage |
---|---|---|---|
isMin(breakpoint) |
(breakpointKey) => boolean |
Returns true if the viewport width is greater than or equal to the specified breakpoint's minimum value. |
matches.isMin('md') |
isMax(breakpoint) |
(breakpointKey) => boolean |
Returns true if the viewport width is less than or equal to the specified breakpoint's maximum value. |
matches.isMax('my-custom-interval') |
isOnly(breakpoint) |
(breakpointKey) => boolean |
Returns true if the viewport width is within the specified breakpoint's range (greater than or equal to min and less than max). |
matches.isOnly('sm') |
These properties provide information about the device's capabilities and user preferences.
Name | Type | Description | Media query equivalent |
---|---|---|---|
orientation |
'portrait' | 'landscape' |
The current device orientation | @media (orientation: *) |
hover |
'none' | 'hover' |
The hover capability of the device | @media (hover: *) |
prefers.reducedMotion |
'no-preference' | 'reduce' |
User preference for reduced motion | @media (prefers-reduced-motion: *) |
prefers.colorScheme |
'light' | 'dark' |
User preference for color scheme | @media (prefers-color-scheme: *) |
prefers.contrast |
'no-preference' | 'more' | 'less' | 'custom' |
User preference for contrast | @media (prefers-contrast: *) |
When testing components using the plugin's API you need to add the plugin to global.plugins
. Example:
import MyComponent from './MyComponent.vue'
import { VueResponsiveness } from 'vue-responsiveness'
describe('<MyComponent />', () => {
it('should render', () => {
const wrapper = shallowMount(MyComponent, {
global: {
plugins: [VueResponsiveness]
}
})
// test here
})
})
- Uses the native browser API
window.matchMedia(queryString)
, the same underlying technology that powers CSS media queries - It subscribes to
change
events on MediaQueryList instances, reacting only when the matching status of a media query actually changes, not every time the screen size changes - Unlike traditional methods that often rely on the
window.resize
event,,matchMedia
is highly optimized by browsers, offering far better performance - all listeners are directly attached to the
MediaQueryList
objects and automatically garbage collected when the application instance is unmounted, ensuring no global pollution or lingering event handlers. - the design ensures only one plugin instance and one set of listeners per Vue application, making it exceptionally light on memory and CPU consumption
Happy coding!
:: }<(((*> ::