blob: 80396026b8638c43846d947371c935c604c66082 (
plain) (
blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
import { TextWrap } from '@vicons/tabler';
import { defineTool } from '../tool';
import { translate } from '@/plugins/i18n.plugin';
export const tool = defineTool({
name: translate('tools.text-to-unicode.title'),
path: '/text-to-unicode',
description: translate('tools.text-to-unicode.description'),
keywords: ['text', 'to', 'unicode'],
component: () => import('./text-to-unicode.vue'),
icon: TextWrap,
createdAt: new Date('2024-01-31'),
});
|