it-tools/src/tools/json-to-csv/index.ts
2024-02-01 14:05:54 +01:00

13 lines
440 B
TypeScript

import { List } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-to-csv.title'),
path: '/json-to-csv',
description: translate('tools.json-to-csv.description'),
keywords: ['json', 'to', 'csv', 'convert'],
component: () => import('./json-to-csv.vue'),
icon: List,
createdAt: new Date('2023-06-18'),
});