mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-25 01:06:15 -04:00
feat(tool): url encode/decode
This commit is contained in:
parent
034c686896
commit
afac5664c8
3 changed files with 117 additions and 0 deletions
11
src/tools/url-encoder/index.ts
Normal file
11
src/tools/url-encoder/index.ts
Normal file
|
@ -0,0 +1,11 @@
|
|||
import { Link } from '@vicons/tabler';
|
||||
import type { ITool } from '../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Encode/decode url formatted strings',
|
||||
path: '/url-encoder',
|
||||
description: 'Encode to url-encoded format (also known as "percent-encoded") or decode from it.',
|
||||
keywords: ['url', 'encode', 'decode', 'percent', '%20', 'format'],
|
||||
component: () => import('./url-encoder.vue'),
|
||||
icon: Link,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue