blob: 9f38b82fc63ae946a7549a8b4b21b8bf16cb0cfa (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'),
});
|