authorization.vue 324 B

123456789101112131415161718192021222324
  1. <template>
  2. <div>
  3. <UserAuthLoginForm />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. mounted() {
  9. if (this.$store.state.auth.user) {
  10. this.$router.replace({name: 'user-profile'})
  11. }
  12. },
  13. head() {
  14. return {
  15. title: 'Вход на сайт — Амик.ру'
  16. }
  17. }
  18. };
  19. </script>
  20. <style>
  21. </style>