mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-05-04 13:29:13 -04:00
feat(tool): roman-arabic numbers converter
This commit is contained in:
parent
3ae61147a9
commit
655019cf23
5 changed files with 154 additions and 0 deletions
11
src/tools/roman-numeral-converter/index.ts
Normal file
11
src/tools/roman-numeral-converter/index.ts
Normal 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,
|
||||
};
|
Loading…
Add table
Add a link
Reference in a new issue