1
0
Fork 0
mirror of https://github.com/CorentinTh/it-tools.git synced 2025-07-27 09:09:37 +02:00

feat(new-tool): keycode info

This commit is contained in:
Corentin Thomasset 2023-02-06 23:11:22 +01:00
parent 4a5734d4a3
commit c934c4e50c
No known key found for this signature in database
GPG key ID: DBD997E935996158
3 changed files with 95 additions and 0 deletions

View file

@ -0,0 +1,26 @@
import { Keyboard } from '@vicons/tabler';
import { defineTool } from '../tool';
export const tool = defineTool({
name: 'Keycode info',
path: '/keycode-info',
description: 'Find the javascript keycode, code, location and modifiers of any pressed key.',
keywords: [
'keycode',
'info',
'code',
'javascript',
'event',
'keycodes',
'which',
'keyboard',
'press',
'modifier',
'alt',
'ctrl',
'meta',
'shift',
],
component: () => import('./keycode-info.vue'),
icon: Keyboard,
});