mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
13 lines
505 B
TypeScript
13 lines
505 B
TypeScript
import { List } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.list-converter.title'),
|
|
path: '/list-converter',
|
|
description: translate('tools.list-converter.description'),
|
|
keywords: ['list', 'converter', 'sort', 'reverse', 'prefix', 'suffix', 'lowercase', 'truncate'],
|
|
component: () => import('./list-converter.vue'),
|
|
icon: List,
|
|
createdAt: new Date('2023-05-07'),
|
|
});
|