mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 05:19:12 -04:00
12 lines
503 B
TypeScript
12 lines
503 B
TypeScript
import { IconLetterX } from '@tabler/icons-vue';
|
|
import { defineTool } from '../tool';
|
|
import { translate } from '@/plugins/i18n.plugin';
|
|
|
|
export const tool = defineTool({
|
|
name: translate('tools.roman-numeral-converter.title'),
|
|
path: '/roman-numeral-converter',
|
|
description: translate('tools.roman-numeral-converter.description'),
|
|
keywords: ['roman', 'arabic', 'converter', 'X', 'I', 'V', 'L', 'C', 'D', 'M'],
|
|
component: () => import('./roman-numeral-converter.vue'),
|
|
icon: IconLetterX,
|
|
});
|