it-tools/src/tools/text-statistics/index.ts

14 lines
500 B
TypeScript
Raw Normal View History

2022-04-14 01:06:06 +02:00
import { FileText } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
2022-04-14 01:06:06 +02:00
export const tool = defineTool({
name: translate('tools.text-statistics.title'),
2022-04-14 01:06:06 +02:00
path: '/text-statistics',
description: translate('tools.text-statistics.description'),
2022-04-14 01:06:06 +02:00
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
component: () => import('./text-statistics.vue'),
icon: FileText,
redirectFrom: ['/text-stats'],
});