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