blob: 9ae7c512ce89a099369a43568f62062686b424ab (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
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'),
});
|