2024-01-31 16:55:18 +07:00
|
|
|
import { TextWrap } from '@vicons/tabler';
|
|
|
|
import { defineTool } from '../tool';
|
2024-02-01 14:05:54 +01:00
|
|
|
import { translate } from '@/plugins/i18n.plugin';
|
2024-01-31 16:55:18 +07:00
|
|
|
|
|
|
|
export const tool = defineTool({
|
2024-02-01 14:05:54 +01:00
|
|
|
name: translate('tools.text-to-unicode.title'),
|
2024-01-31 16:55:18 +07:00
|
|
|
path: '/text-to-unicode',
|
2024-02-01 14:05:54 +01:00
|
|
|
description: translate('tools.text-to-unicode.description'),
|
2024-01-31 16:55:18 +07:00
|
|
|
keywords: ['text', 'to', 'unicode'],
|
|
|
|
component: () => import('./text-to-unicode.vue'),
|
|
|
|
icon: TextWrap,
|
|
|
|
createdAt: new Date('2024-01-31'),
|
|
|
|
});
|