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'), });