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

13 lines
426 B
TypeScript
Raw Normal View History

2022-04-13 13:29:44 +02:00
import { Link } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-13 13:29:44 +02:00
export const tool = defineTool({
name: translate('tools.url-encoder.title'),
2022-04-13 13:29:44 +02:00
path: '/url-encoder',
description: translate('tools.url-encoder.description'),
2022-04-13 13:29:44 +02:00
keywords: ['url', 'encode', 'decode', 'percent', '%20', 'format'],
component: () => import('./url-encoder.vue'),
icon: Link,
});