mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
12 lines
460 B
TypeScript
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,
|
|
});
|