Stephan Tabor
Stephan Tabor
as far as i can tell, the decorated function will always emit and if `undefined` is returned from the decorated function it just won't emit the `undefined`, only the args...
What I ended up doing is just using window.matchMedia and setting some state inside of Vuex (or just a Vue component instance when I’m not using vuex) for whatever breakpoints...
@flyingL123 it can work for some simple cases, but the main reason that I made this issue was because using matchMedia and allowing any media queries has a few other...
@nathanchase I think the person meant you could convert your min-width to max-width, e.g. ```css @custom-media --larger-than-desktop-hd (min-width: 1200px); @custom-media --full-size (min-width: 1440px); ``` becomes ```js ue.use(VueMq, { // These...
@IceSentry that does not currently work
Also experiencing this issue. For whatever reason my widths are off by `1em` so i added a max width to the `.container` class and it solved my issue. ``` scss...
Vue also does not handle `` well https://github.com/vuejs/vue/issues/9427