mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 21:37:11 -04:00
14 lines
456 B
TypeScript
14 lines
456 B
TypeScript
![]() |
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'),
|
||
|
});
|