feat(update onchange route values):

This commit is contained in:
2024-03-11 17:09:10 +03:00
parent b5b3c616dc
commit 651dfd93a5
2 changed files with 2 additions and 2 deletions

View File

@@ -93,7 +93,7 @@ export default {
})
},
parseNumber (value) {
if (!value || value !== 0) return 0
if (isNaN(parseFloat(value)) || !value && value !== 0) return 0
return parseFloat(value)
},
removeCurrentRoute() {