blob: ab85118c855a63ac85954665cfa53b1a967a9015 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
|
import { Link } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.url-encoder.title'),
path: '/url-encoder',
description: translate('tools.url-encoder.description'),
keywords: ['url', 'encode', 'decode', 'percent', '%20', 'format'],
component: () => import('./url-encoder.vue'),
icon: Link,
});
|