mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(new-tool): json viewer
This commit is contained in:
11
src/tools/json-viewer/index.ts
Normal file
11
src/tools/json-viewer/index.ts
Normal file
@@ -0,0 +1,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,
|
||||
};
|
||||
Reference in New Issue
Block a user