it-tools/src/tools/json-viewer/index.ts
2022-06-02 00:11:49 +02:00

11 lines
353 B
TypeScript

import { Braces } from '@vicons/tabler';
import type { ITool } from '../tool';
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,
};