mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-04-24 08:46:15 -04:00
13 lines
455 B
TypeScript
13 lines
455 B
TypeScript
import { Braces } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.json-prettify.title'),
|
|
path: '/json-prettify',
|
|
description: translate('tools.json-prettify.description'),
|
|
keywords: ['json', 'viewer', 'prettify', 'format'],
|
|
component: () => import('./json-viewer.vue'),
|
|
icon: Braces,
|
|
redirectFrom: ['/json-viewer'],
|
|
});
|