#
Quasar Global Components | webally.co.za
By
#
Create new Boot file
quasar new boot RegisterGlobalCOmponents
#
Update quasar.conf.js
boot: [
'RegisterGlobalCOmponents',
],
#
Create new component
quasar new component globalComponent
#
Update Boot file
Edit RegisterGlobalCOmponents.js
in the /src/boot
folder
import { boot } from 'quasar.wrappers`
import globalComponent from 'components/globalComponent.vue'
export default boot(async ({ app }) => {
app.component('globalComponent',globalComponent);
});