it-tools/src/tools/json-sort-master/index.ts

14 lines
456 B
TypeScript
Raw Normal View History

import { ArrowsSort } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.json-sort-master.title'),
path: '/json-sort-master',
description: translate('tools.json-sort-master.description'),
keywords: ['json', 'sort'],
component: () => import('./json-sort-master.vue'),
icon: ArrowsSort,
createdAt: new Date('2024-03-27'),
});