@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
24 lines (23 loc) • 635 B
JavaScript
export default {
data () {
return {
form: this.$inkline.form({
input: {
validators: [
{ name: 'number' }
]
},
inputNegative: {
validators: [
{ name: 'number', allowNegative: true }
]
},
inputNegativeDecimal: {
validators: [
{ name: 'number', allowNegative: true, allowDecimal: true }
]
}
})
};
}
};