mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
13 lines
514 B
TypeScript
13 lines
514 B
TypeScript
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
import Bank from '~icons/mdi/bank';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.iban-validator-and-parser.title'),
|
|
path: '/iban-validator-and-parser',
|
|
description: translate('tools.iban-validator-and-parser.description'),
|
|
keywords: ['iban', 'validator', 'and', 'parser', 'bic', 'bank'],
|
|
component: () => import('./iban-validator-and-parser.vue'),
|
|
icon: Bank,
|
|
createdAt: new Date('2023-08-26'),
|
|
});
|