1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
|
import { Keyboard } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.keycode-info.title'),
path: '/keycode-info',
description: translate('tools.keycode-info.description'),
keywords: [
'keycode',
'info',
'code',
'javascript',
'event',
'keycodes',
'which',
'keyboard',
'press',
'modifier',
'alt',
'ctrl',
'meta',
'shift',
],
component: () => import('./keycode-info.vue'),
icon: Keyboard,
});
|