mirror of
https://github.com/Art051/it-tools.git
synced 2025-08-11 19:29:03 +00:00
feat(tool): text statistics
This commit is contained in:
11
src/tools/text-statistics/index.ts
Normal file
11
src/tools/text-statistics/index.ts
Normal file
@@ -0,0 +1,11 @@
|
||||
import { FileText } from '@vicons/tabler';
|
||||
import type { ITool } from './../Tool';
|
||||
|
||||
export const tool: ITool = {
|
||||
name: 'Text statistics',
|
||||
path: '/text-statistics',
|
||||
description: "Get information about a text, the amount of characters, the amount of words, it's size, ...",
|
||||
keywords: ['text', 'statistics', 'length', 'characters', 'count', 'size', 'bytes'],
|
||||
component: () => import('./text-statistics.vue'),
|
||||
icon: FileText,
|
||||
};
|
||||
Reference in New Issue
Block a user