mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
13 lines
491 B
TypeScript
13 lines
491 B
TypeScript
import { IconBrackets } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.toml-to-json.title'),
|
|
path: '/toml-to-json',
|
|
description: translate('tools.toml-to-json.description'),
|
|
keywords: ['toml', 'json', 'convert', 'online', 'transform', 'parser'],
|
|
component: () => import('./toml-to-json.vue'),
|
|
icon: IconBrackets,
|
|
createdAt: new Date('2023-06-23'),
|
|
});
|