I am working on an Angular project that includes an input field for users to enter numbers. My goal is to show the number with exactly 3 decimal places if the user submits a whole number. For instance, if the user inputs 6, I want it to be displayed as 6.000 once the user clicks outside of the input field. I am wondering if there is an Angular-specific solution to achieve this?
Thank you