Install Vue3-MQ using a package manager
To add Vue3-Mq to your Vue 3 app, first install it using your chosen package manager.
npm install vue3-mq
yarn add vue3-mq
Now add the plugin to your app entry file
import { createApp } from "vue";
import { Vue3Mq } from "vue3-mq";
const app = createApp({});
app.use(Vue3Mq);
app.mount("#app");