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

12 lines
353 B
TypeScript
Raw Normal View History

2022-05-09 17:41:42 +02:00
import { Braces } from '@vicons/tabler';
2022-05-25 23:20:51 +02:00
import type { ITool } from '../tool';
2022-05-09 17:41:42 +02:00
export const tool: ITool = {
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,
};