29 lines
		
	
	
		
			544 B
		
	
	
	
		
			TypeScript
		
	
	
	
	
	
			
		
		
	
	
			29 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,
 | |
| });
 |