Register vue-qr globally
masterTo make the VueQr component available throughout your entire Vue 3 application, use the install function during app initialization.
import { createApp } from 'vue'
import { VueQr, install } from 'vue-qr'
const app = createApp(App)
app.use({ install }) // or app.component('VueQr', VueQr)
app.mount('#app')