feat(new-tool): json to csv converter

This commit is contained in:
Corentin Thomasset 2023-06-18 17:57:18 +02:00
parent 4cbd7ac145
commit 69f0bd079f
No known key found for this signature in database
GPG key ID: DBD997E935996158
7 changed files with 200 additions and 0 deletions

View 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'),
});