it-tools/src/tools/roman-numeral-converter/index.ts

13 lines
492 B
TypeScript
Raw Normal View History

import { LetterX } from '@vicons/tabler';
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: LetterX,
});