You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have an application where the user can specify breakpoints to render different data. I cannot change the breakpoint at runtime however. Calling Vue.use(VueMq, { ... }) when it's already set doesn't do anything.
Something along the lines of this would be great:
Vue.use(VueMq,{breakpoints: {// default breakpoints - customize thissm: 450,md: 1250,lg: Infinity,}defaultBreakpoint: 'sm'// customize this for SSR})// in componentthis.$mq.update('sm',550)
The text was updated successfully, but these errors were encountered:
I have an application where the user can specify breakpoints to render different data. I cannot change the breakpoint at runtime however. Calling
Vue.use(VueMq, { ... })
when it's already set doesn't do anything.Something along the lines of this would be great:
The text was updated successfully, but these errors were encountered: