mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
28 lines
544 B
TypeScript
28 lines
544 B
TypeScript
import { Key } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.jwt-parser.title'),
|
|
path: '/jwt-parser',
|
|
description: translate('tools.jwt-parser.description'),
|
|
keywords: [
|
|
'jwt',
|
|
'parser',
|
|
'decode',
|
|
'typ',
|
|
'alg',
|
|
'iss',
|
|
'sub',
|
|
'aud',
|
|
'exp',
|
|
'nbf',
|
|
'iat',
|
|
'jti',
|
|
'json',
|
|
'web',
|
|
'token',
|
|
],
|
|
component: () => import('./jwt-parser.vue'),
|
|
icon: Key,
|
|
});
|