feat(new tool): Implement JSON sorter, addressing issue #941

This commit is contained in:
Babar Saleh Hayat 2024-03-27 19:29:53 +05:00
parent d3b32cc14e
commit 22cdc82e3f
12 changed files with 215 additions and 1 deletions

View file

@ -0,0 +1,13 @@
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'),
});