mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 17:26:15 -04:00
12 lines
525 B
TypeScript
12 lines
525 B
TypeScript
import { ArrowsShuffle } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.token-generator.title'),
|
|
path: '/token-generator',
|
|
description: translate('tools.token-generator.description'),
|
|
keywords: ['token', 'random', 'string', 'alphanumeric', 'symbols', 'number', 'letters', 'lowercase', 'uppercase', 'password'],
|
|
component: () => import('./token-generator.tool.vue'),
|
|
icon: ArrowsShuffle,
|
|
});
|