feat(tool): roman-arabic numbers converter

This commit is contained in:
Corentin Thomasset 2022-04-04 23:33:39 +02:00
parent 3ae61147a9
commit 655019cf23
No known key found for this signature in database
GPG key ID: DBD997E935996158
5 changed files with 154 additions and 0 deletions

View file

@ -0,0 +1,11 @@
import { LetterX } from '@vicons/tabler';
import type { ITool } from '../Tool';
export const tool: ITool = {
name: 'Roman numeral converter',
path: '/roman-numeral-converter',
description: 'Convert Roman numerals to numbers and convert numbers to Roman numerals.',
keywords: ['roman', 'arabic', 'converter', 'X', 'I', 'V', 'L', 'C', 'D', 'M'],
component: () => import('./roman-numeral-converter.vue'),
icon: LetterX,
};