import { boot } from 'quasar/wrappers'; import qFormMixin from './qformMixin'; import keyShortcut from './keyShortcut'; import useNotify from 'src/composables/useNotify.js'; const { notify } = useNotify(); export default boot(({ app }) => { app.mixin(qFormMixin); app.directive('shortcut', keyShortcut); app.config.errorHandler = function (err) { console.error(err); notify('globals.error', 'negative', 'error'); }; });