- Cataloghi: qualita di stampa e margini

This commit is contained in:
Surya Paolo
2024-11-22 20:23:37 +01:00
parent 5cd9bd40f6
commit 6a6c15b62c
24 changed files with 1031 additions and 530 deletions

View File

@@ -63,7 +63,12 @@ export default defineComponent({
} else if (mioval >= 100) {
return 5
} else {
return 1
if (props.max < 5) {
return (props.max - props.min) / 100
} else {
return 1
}
}
}