mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
12 lines
453 B
TypeScript
12 lines
453 B
TypeScript
import { IconLockSquare } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.bcrypt.title'),
|
|
path: '/bcrypt',
|
|
description: translate('tools.bcrypt.description'),
|
|
keywords: ['bcrypt', 'hash', 'compare', 'password', 'salt', 'round', 'storage', 'crypto'],
|
|
component: () => import('./bcrypt.vue'),
|
|
icon: IconLockSquare,
|
|
});
|