blob: 67a17dc584c65b74ff71fb076991e4587b3016d6 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
|
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,
};
|