Skip to content

Version 4.0.0

New vuetify3 preset available

The Vuetify 3 breakpoints are now available as a preset for Vue3 MQ. These feature tweaked large and x-large breakpoints as well as a new xx-large breakpoint. For more information, see Vuetify 3: Breakpoints and Thresholds

js
import { createApp } from "vue";
import { Vue3Mq } from "vue3-mq";

const app = createApp();
app.use(Vue3Mq, {
	preset: "vuetify3",
});

app.mount("#app");

BugFix: Fix MqResponsive is not referenced error

Thanks to https://github.com/rfostii for the fix

A Modern Stack

  • The project has been upgrade to ESM-first which meant up bumping to v4 as a precaution
  • We're also trying out building some types for the library courtesy of JSDoc
  • Jest has been dropped in favour of Vitest
  • Eslint 9's flat config is now used

Released under the MIT License.