UNPKG

dom-validator

Version:

Validator similar to vee-validator for vuetify Applications

12 lines (8 loc) 220 B
import Validator from './validator'; export default (Vue, options) => { const mixin = {}; mixin.beforeCreate = function beforeCreate () { this.$validator = new Validator(this, options) }; return mixin; };