blob: 2393783992008d8f85311ea80000c88879f6a598 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { FileText } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.text-statistics.title'),
path: '/text-statistics',
description: translate('tools.text-statistics.description'),
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
component: () => import('./text-statistics.vue'),
icon: FileText,
redirectFrom: ['/text-stats'],
});
|