UNPKG

@inkline/inkline

Version:

Inkline is the Vue.js UI/UX Library built for creating your next design system

18 lines (17 loc) 464 B
export default { data () { return { form: this.$inkline.form({ input: { validators: [ { name: 'custom', message: 'Please enter a value containing "inkline".', validator: (v) => /inkline/.test(v) } ] } }) }; } };