mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
13 lines
440 B
TypeScript
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'),
|
|
});
|