@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
15 lines (14 loc) • 606 B
HTML
<i-form v-model="form">
<i-form-group>
<i-input name="input" placeholder="This field should contain only numbers" />
<i-form-error for="input" />
</i-form-group>
<i-form-group>
<i-input name="inputNegative" placeholder="This field should contain positive or negative numbers" />
<i-form-error for="inputNegative" />
</i-form-group>
<i-form-group>
<i-input name="inputNegativeDecimal" placeholder="This field should contain positive or negative decimal numbers" />
<i-form-error for="inputNegativeDecimal" />
</i-form-group>
</i-form>