blob: f30432700b3f6241b1ceac4829952bc042b6f741 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { AlignJustified } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.yaml-prettify.title'),
path: '/yaml-prettify',
description: translate('tools.yaml-prettify.description'),
keywords: ['yaml', 'viewer', 'prettify', 'format'],
component: () => import('./yaml-viewer.vue'),
icon: AlignJustified,
createdAt: new Date('2024-01-31'),
});
|