Skip to content

Instantly share code, notes, and snippets.

@skydiver
Created June 2, 2019 19:36
Show Gist options
  • Save skydiver/25b345d526e394ec6468d5c06438bc7f to your computer and use it in GitHub Desktop.
Save skydiver/25b345d526e394ec6468d5c06438bc7f to your computer and use it in GitHub Desktop.
Vue MQ (MediaQuery) + Nuxt.js
import Vue from 'vue';
import VueMq from 'vue-mq';
Vue.use(VueMq, {
breakpoints: {
xs: 576,
sm: 768,
md: 992,
lg: 1200,
xl: Infinity
},
defaultBreakpoint: 'lg'
});
@skydiver
Copy link
Author

skydiver commented Jun 2, 2019

npm install vue-mq --save

@skydiver
Copy link
Author

skydiver commented Jun 2, 2019

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment