mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
feat(new-tool): csv to json converter
This commit is contained in:
parent
d3b32cc14e
commit
9dca9c3cb8
12 changed files with 212 additions and 6 deletions
13
src/tools/csv-to-json/index.ts
Normal file
13
src/tools/csv-to-json/index.ts
Normal file
|
@ -0,0 +1,13 @@
|
|||
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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue