diff options
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'), +}); |