123456789101112131415161718192021222324 |
- <template>
- <div>
- <UserAuthLoginForm />
- </div>
- </template>
- <script>
- export default {
- mounted() {
- if (this.$store.state.auth.user) {
- this.$router.replace({name: 'user-profile'})
- }
- },
- head() {
- return {
- title: 'Вход на сайт — Амик.ру'
- }
- }
- };
- </script>
- <style>
- </style>
|