it-tools/src/tools/json-viewer/index.ts

12 lines
358 B
TypeScript
Raw Normal View History

2022-05-09 17:41:42 +02:00
import { Braces } from '@vicons/tabler';
import { defineTool } from '../tool';
2022-05-09 17:41:42 +02:00
export const tool = defineTool({
2022-05-09 17:41:42 +02:00
name: 'JSON viewer',
path: '/json-viewer',
description: 'Prettify JSON string to a human friendly readable format.',
keywords: ['json', 'viewer', 'prettify', 'format'],
component: () => import('./json-viewer.vue'),
icon: Braces,
});