blob: 77976a24bedae800e0c00bb860dc43d93bc23007 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
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,
});
|