blob: 1911f61db20213cfbd3d12130666ea38b04eff03 (
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,
};
|