## Examples ## ### Spinners ### To add up / down arrow buttons to change the value, set `step`. ```html:preview ``` ### Precision ### To enforce a certain number of decimal places, set `precision`. ```html:preview ``` ### Number Format ### Normally numbers use the user's number format for thousands and decimal separator from preferences, but it is possible to specify for a particular number. The internal value is not affected. ```html:preview ``` ### Minimum and Maximum ### Limit the value with `min` and `max` ```html:preview ``` ### Prefix & Suffix ### Use `prefix` and `suffix` attributes to add text before or after the input field. To include HTML or other widgets, use the `prefix` and `suffix` slots instead. ```html:preview ``` ### Currency ### Using `suffix`,`min` and `precision` together ```html:preview ```