it-tools/src/tools/json-to-csv/index.ts

14 lines
440 B
TypeScript
Raw Normal View History

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