define your custom viewports and use them in your components
- Uses matchMedia
- Exposes a fully updated viewport name
npm install vue-viewports --save-dev
import VueViewports from 'vue-viewports'
const options = [
{
rule: '320px',
label: 'mobile'
},
{
rule: '768px',
label: 'tablet'
},
{
rule: '1024px',
label: 'desktop'
},
{
rule: '1920px',
label: 'hd-desktop'
},
{
rule: '2560px',
label: 'qhd-desktop'
},
{
rule: '3840px',
label: 'uhd-desktop'
}
]
Vue.use(VueViewports, options)
- options [optional]: object defining a set of
{ rule: value, label: value }
where 'rule' is the number value where the viewport starts (included) and the 'label' is the viewport's name, defaults on previous example
{
if (this.$currentViewport.label === 'tablet') {
// from 768px (included) to 1024px (excluded)
} else {
// anything else
}
}
$currentViewport
: the current viewport object, defined byrule
,label
;undefined
if no match.
Feel free to contribute and ask questions!