vue components refactoring

This commit is contained in:
Čarodej
2022-04-13 16:19:10 +02:00
parent 6a4bfa8bfe
commit 338f8664b7
251 changed files with 1068 additions and 1943 deletions

View File

@@ -136,7 +136,7 @@
</div>
</ValidationObserver>
<SocialiteAuthenticationButtons />
<SocialLoginButtons />
<span class="block"
>{{ $t('page_registration.have_an_account') }}
@@ -149,12 +149,12 @@
</template>
<script>
import Headline from './Headline'
import AuthContentWrapper from '../../components/Auth/AuthContentWrapper'
import Headline from '../../components/UI/Labels/LogoHeadline'
import AuthContentWrapper from '../../components/Layout/AuthPages/AuthContentWrapper'
import { ValidationProvider, ValidationObserver } from 'vee-validate/dist/vee-validate.full'
import AuthContent from '../../components/Auth/AuthContent'
import AuthButton from '../../components/Auth/AuthButton'
import SocialiteAuthenticationButtons from '../../components/Auth/SocialiteAuthenticationButtons'
import AuthContent from '../../components/Layout/AuthPages/AuthContent'
import AuthButton from '../../components/UI/Buttons/AuthButton'
import SocialLoginButtons from '../../components/UI/Buttons/SocialLoginButtons'
import { required } from 'vee-validate/dist/rules'
import { mapGetters } from 'vuex'
import { events } from '../../bus'
@@ -163,7 +163,7 @@ import axios from 'axios'
export default {
name: 'SignUp',
components: {
SocialiteAuthenticationButtons,
SocialLoginButtons,
AuthContentWrapper,
ValidationProvider,
ValidationObserver,