diff options
author | 2023-06-18 17:57:18 +0200 | |
---|---|---|
committer | 2023-06-18 18:10:06 +0200 | |
commit | 69f0bd079fd824dc9e929ccbbaa6bcaab0c38a7c (patch) | |
tree | 27d2b1fde22872f3d21dedf7c9af99f42187945b /src/tools/json-to-csv/index.ts | |
parent | 4cbd7ac14588e954510340186c6797b19caca593 (diff) | |
download | it-tools-69f0bd079fd824dc9e929ccbbaa6bcaab0c38a7c.tar.gz it-tools-69f0bd079fd824dc9e929ccbbaa6bcaab0c38a7c.tar.zst it-tools-69f0bd079fd824dc9e929ccbbaa6bcaab0c38a7c.zip |
feat(new-tool): json to csv converter
Diffstat (limited to 'src/tools/json-to-csv/index.ts')
-rw-r--r-- | src/tools/json-to-csv/index.ts | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/src/tools/json-to-csv/index.ts b/src/tools/json-to-csv/index.ts new file mode 100644 index 0000000..acfef02 --- /dev/null +++ b/src/tools/json-to-csv/index.ts @@ -0,0 +1,12 @@ +import { List } from '@vicons/tabler'; +import { defineTool } from '../tool'; + +export const tool = defineTool({ + name: 'JSON to CSV', + path: '/json-to-csv', + description: 'Convert JSON to CSV with automatic header detection.', + keywords: ['json', 'to', 'csv', 'convert'], + component: () => import('./json-to-csv.vue'), + icon: List, + createdAt: new Date('2023-06-18'), +}); |