it-tools/src/tools/url-parser/index.ts
2024-02-01 14:05:54 +01:00

12 lines
460 B
TypeScript

import { Unlink } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.url-parser.title'),
path: '/url-parser',
description: translate('tools.url-parser.description'),
keywords: ['url', 'parser', 'protocol', 'origin', 'params', 'port', 'username', 'password', 'href'],
component: () => import('./url-parser.vue'),
icon: Unlink,
});