mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
feat(new-tool): json to csv converter
This commit is contained in:
parent
4cbd7ac145
commit
69f0bd079f
7 changed files with 200 additions and 0 deletions
12
src/tools/json-to-csv/index.ts
Normal file
12
src/tools/json-to-csv/index.ts
Normal file
|
@ -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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue