mirror of
https://github.com/CorentinTh/it-tools.git
synced 2025-07-09 03:04:06 -04:00
fix(roman-converter): replaced incorrect default value
This commit is contained in:
parent
dab8d63390
commit
8787ce72ab
@ -30,7 +30,7 @@ import { arabicToRoman, romanToArabic } from './roman-numeral-converter.service'
|
||||
const inputNumeral = ref(42);
|
||||
const outputRoman = computed(() => arabicToRoman(inputNumeral.value));
|
||||
|
||||
const inputRoman = ref('IVX');
|
||||
const inputRoman = ref('XLII');
|
||||
const outputNumeral = computed(() => romanToArabic(inputRoman.value));
|
||||
|
||||
const { copy: copyRoman } = useCopy({ source: outputRoman, text: 'Roman number copied to the clipboard' });
|
||||
|
Loading…
x
Reference in New Issue
Block a user