From 2739abceb6626dddd02e563d969df4e3eb93b6c6 Mon Sep 17 00:00:00 2001 From: carlossa Date: Mon, 11 Nov 2024 13:28:29 +0100 Subject: [PATCH] fix: refs #7790 fix quasar --- src/boot/quasar.js | 4 ---- 1 file changed, 4 deletions(-) diff --git a/src/boot/quasar.js b/src/boot/quasar.js index 69532c696..3179e39dd 100644 --- a/src/boot/quasar.js +++ b/src/boot/quasar.js @@ -1,8 +1,6 @@ import { boot } from 'quasar/wrappers'; import qFormEnterEvent from './qFormEnterEvent'; import qFormFocus from './qFormFocus'; -import mainShortcutMixin from './mainShortcutMixin'; -import qFormMixin from './qformMixin'; import keyShortcut from './keyShortcut'; import useNotify from 'src/composables/useNotify.js'; import { CanceledError } from 'axios'; @@ -10,10 +8,8 @@ import { CanceledError } from 'axios'; const { notify } = useNotify(); export default boot(({ app }) => { - app.mixin(qFormMixin); app.mixin(qFormEnterEvent); app.mixin(qFormFocus); - app.mixin(mainShortcutMixin); app.directive('shortcut', keyShortcut); app.config.errorHandler = (error) => { let message;