vue-mq module for Nuxt.js.
- Add
nuxt-mqdependency using yarn or npm to your project - Add
nuxt-mqtomodulessection ofnuxt.config.js
{
modules: [
// Simple usage
[
"nuxt-mq",
{
breakpoints: {
sm: 450,
md: 1250,
lg: Infinity
}
}
]
];
}using top level options
{
modules: [
['nuxt-mq']
],
'mq': {
breakpoints: {
sm: 450,
md: 1250,
lg: Infinity,
}
}
}Click here for all options and features of vue-mq.
- Clone this repository
- Install dependencies using
yarn installornpm install - Start development server using
npm run dev
Copyright (c) Maarten Van Hoof