I'm working on implementing a number input field in Vue 3 that restricts the user from entering a value less than 1. Currently, I have set the minimum value to 1 to prevent using the input arrows to go below 1:
<input min="1" type="number" />
However, users can still manually input 0 or a negative number. How can I further restrict the input to only allow numbers greater than or equal to 1?