I\'m currently trying to create a Registration form with multiple \"Input Field\" components which all require validating once Submit has been pressed. They all currently va
For plain Vuejs i use:
inject: ['$validator'],
in the child,
and:
provide() { return { $validator: this.$validator, }; },
in the parent.