mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
12 lines
321 B
TypeScript
12 lines
321 B
TypeScript
![]() |
import { Key } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: 'JWT parser',
|
||
|
path: '/jwt-parser',
|
||
|
description: 'Parse a JWT (JSON Web Token) to display its content.',
|
||
|
keywords: ['jwt', 'parser'],
|
||
|
component: () => import('./jwt-parser.vue'),
|
||
|
icon: Key,
|
||
|
});
|