Added type

This commit is contained in:
2025-02-05 15:00:45 +01:00
parent d33ac7e9f8
commit 75db025d80

View File

@@ -17,7 +17,7 @@ const nameInput = ref('')
const valueInput = ref('')
const selectedOption = ref(options.value[0].name)
const isNumeric = (string) => /^[+-]?\d+(\.\d+)?$/.test(string)
const isNumeric = (string : string) => /^[+-]?\d+(\.\d+)?$/.test(string)
const selectedFunction = () => {
const action = selectOption(selectedOption.value);