mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
feat(new tool): Implement JSON sorter, addressing issue #941
This commit is contained in:
parent
d3b32cc14e
commit
22cdc82e3f
12 changed files with 215 additions and 1 deletions
13
src/tools/json-sort-master/index.ts
Normal file
13
src/tools/json-sort-master/index.ts
Normal 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'),
|
||||
});
|
Loading…
Add table
Add a link
Reference in a new issue