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