mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
14 lines
458 B
TypeScript
14 lines
458 B
TypeScript
![]() |
import { ArrowsShuffle } from '@vicons/tabler';
|
||
|
import { defineTool } from '../tool';
|
||
|
import { translate } from '@/plugins/i18n.plugin';
|
||
|
|
||
|
export const tool = defineTool({
|
||
|
name: translate('tools.csv-to-json.title'),
|
||
|
path: '/csv-to-json',
|
||
|
description: translate('tools.csv-to-json.description'),
|
||
|
keywords: ['csv', 'to', 'json', 'convert'],
|
||
|
component: () => import('./csv-to-json.vue'),
|
||
|
icon: ArrowsShuffle,
|
||
|
createdAt: new Date('2024-04-12'),
|
||
|
});
|