feat(new-tool): json viewer

This commit is contained in:
Corentin Thomasset 2022-05-09 17:41:42 +02:00
parent a60f64f744
commit d356b1488f
No known key found for this signature in database
GPG key ID: 3103EB5E79496F9C
6 changed files with 70 additions and 1 deletions

View 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,
};