diff options
author | 2022-05-09 17:41:42 +0200 | |
---|---|---|
committer | 2022-05-09 17:41:42 +0200 | |
commit | d356b1488fc640a4f5b65d62e0f2f368f5941996 (patch) | |
tree | f92b028fd8000fbca53c423dc8132ca4c5a7d0cc /src/tools/json-viewer/index.ts | |
parent | a60f64f74417f811204121f97c16cdb4754afc3b (diff) | |
download | it-tools-d356b1488fc640a4f5b65d62e0f2f368f5941996.tar.gz it-tools-d356b1488fc640a4f5b65d62e0f2f368f5941996.tar.zst it-tools-d356b1488fc640a4f5b65d62e0f2f368f5941996.zip |
feat(new-tool): json viewer
Diffstat (limited to 'src/tools/json-viewer/index.ts')
-rw-r--r-- | src/tools/json-viewer/index.ts | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/src/tools/json-viewer/index.ts b/src/tools/json-viewer/index.ts new file mode 100644 index 0000000..1911f61 --- /dev/null +++ b/src/tools/json-viewer/index.ts @@ -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, +}; |