login.vue
1.16 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
<template>
<v-layout>
<v-flex class="text-center">
<div v-if="me">
<v-btn @click="logout">로그아웃</v-btn>
</div>
<div v-else>
<div v-if="tryLogin">
<login-component/>
<v-btn @click="changeTryLogin">회원가입</v-btn>
</div>
<div v-else>
<sign-up-component/>
<v-btn @click="changeTryLogin">로그인</v-btn>
</div>
</div>
</v-flex>
</v-layout>
</template>
<script>
import LoginComponent from "../components/LoginComponent"
import SignUpComponent from "../components/SignUpComponent"
import LoginLayout from "../layouts/FormLayout"
export default {
name: 'login',
layout: 'FormLayout',
data() {
return {
tryLogin: true,
}
},
computed: {
me() {
return this.$store.state.user.me
}
},
components: {
LoginComponent,
SignUpComponent,
},
methods: {
changeTryLogin() {
this.tryLogin = !this.tryLogin
},
async logout() {
try {
await this.$store.dispatch('user/logout');
await this.$router.replace('/');
} catch (e) {
console.error(e);
}
}
},
}
</script>