it-tools/src/tools/jwt-parser/index.ts

29 lines
544 B
TypeScript
Raw Normal View History

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'),
2023-01-13 13:59:27 +01:00
keywords: [
'jwt',
'parser',
'decode',
'typ',
'alg',
'iss',
'sub',
'aud',
'exp',
'nbf',
'iat',
'jti',
'json',
'web',
'token',
],
component: () => import('./jwt-parser.vue'),
icon: Key,
});