+ Email
+
+ wraps Input
+
+ with type="email"
+
+ and sensible defaults (inputmode
+
+ , autocomplete
+
+ , spellcheck). Browsers will surface their built-in email validation when the
+ field is submitted as part of a form.
+
+ Value: {{ value }} +
+
+ Number
+
+ wraps NumberField
+ with the legacy
+ @codinglabsau/ui
+
+ Number API. v-model is a number.
+
+ Value: {{ basic }} +
+
+ Pass integer to restrict the value to whole numbers (decimal input is rounded on
+ blur).
+
+ Value: {{ integer }} +
+
+ Price
+
+ is a currency-aware numeric input built on NumberField
+ . The v-model is a
+ number
+
+ in dollars
+
+ (e.g. 19.99) — consumers never deal with cents. The displayed value is formatted
+ via
+ Intl.NumberFormat
+
+ using the configured currency
+ and
+ locale.
+
+ v-model: {{ basic }} +
+
+ Pass currency
+
+ (ISO 4217) and locale to render different formats.
+
v-model: {{ usd }}
+