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