UNPKG

@inkline/inkline

Version:

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

19 lines (18 loc) 472 B
export default { data () { return { form: this.$inkline.form({ password: { validators: [ { name: 'required' } ] }, passwordConfirmation: { validators: [ { name: 'sameAs', target: 'password', schema: () => this.form } ] } }) }; } };