diff options
| author | Henry Jameson <me@hjkos.com> | 2022-03-16 22:02:44 +0200 |
|---|---|---|
| committer | Henry Jameson <me@hjkos.com> | 2022-03-16 22:02:44 +0200 |
| commit | e51144809f4c743072e040e0875402596bebb3cf (patch) | |
| tree | e70273cbe44229d6738a73d7e36785ab29c541a9 /src/components/registration | |
| parent | cd4ad2df11369087b1f39bcaac1bbe258e00580d (diff) | |
shit boots yo
Diffstat (limited to 'src/components/registration')
| -rw-r--r-- | src/components/registration/registration.js | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/components/registration/registration.js b/src/components/registration/registration.js index 1ac8e8be..531cc480 100644 --- a/src/components/registration/registration.js +++ b/src/components/registration/registration.js @@ -1,9 +1,9 @@ -import { validationMixin } from 'vuelidate' -import { required, requiredIf, sameAs } from 'vuelidate/lib/validators' +import useVuelidate from '@vuelidate/core' +import { required, requiredIf, sameAs } from '@vuelidate/validators' import { mapActions, mapState } from 'vuex' const registration = { - mixins: [validationMixin], + setup () { return { v$: useVuelidate() } }, data: () => ({ user: { email: '', |
