it-tools/src/tools/url-parser/index.ts

13 lines
460 B
TypeScript
Raw Normal View History

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