2023-06-23 21:40:43 +02:00
|
|
|
import { AlignJustified } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2023-06-23 21:40:43 +02:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.yaml-to-toml.title'),
|
2023-06-23 21:40:43 +02:00
|
|
|
path: '/yaml-to-toml',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.yaml-to-toml.description'),
|
2023-06-23 21:40:43 +02:00
|
|
|
keywords: ['yaml', 'to', 'toml', 'convert', 'transform'],
|
|
|
|
component: () => import('./yaml-to-toml.vue'),
|
|
|
|
icon: AlignJustified,
|
|
|
|
createdAt: new Date('2023-06-23'),
|
|
|
|
});
|