mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-05 05:47:10 -04:00
13 lines
490 B
TypeScript
13 lines
490 B
TypeScript
import { Binary } from '@vicons/tabler';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.text-to-binary.title'),
|
|
path: '/text-to-binary',
|
|
description: translate('tools.text-to-binary.description'),
|
|
keywords: ['text', 'to', 'binary', 'converter', 'encode', 'decode', 'ascii'],
|
|
component: () => import('./text-to-binary.vue'),
|
|
icon: Binary,
|
|
createdAt: new Date('2023-10-15'),
|
|
});
|