We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d28f23f commit 5432b8bCopy full SHA for 5432b8b
src/main.js
@@ -3,7 +3,7 @@ import 'normalize.css'
3
import './style.css'
4
import App from './App.vue'
5
import { initResources } from '@/utils/resources'
6
-import { i18n,getI18nType } from '@/utils/i18n'
+import { i18n, getI18nType } from '@/utils/i18n'
7
8
(async () => {
9
const resource = await initResources();
@@ -15,4 +15,15 @@ import { i18n,getI18nType } from '@/utils/i18n'
15
setTimeout(() => {
16
loadingEl.remove()
17
}, 1000);
18
-})();
+})();
19
+
20
+document.onkeydown = function HandleTabKey(evt) {
21
+ if (evt.keyCode == 9) {
22
+ if (evt.preventDefault) {
23
+ evt.preventDefault();
24
+ }
25
+ else {
26
+ evt.returnValue = false;
27
28
29
+}
0 commit comments