-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #236 from woowacourse-teams/develop
버전 1.3 릴리즈
- Loading branch information
Showing
71 changed files
with
1,369 additions
and
415 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
<template> | ||
<div> | ||
<v-icon @click.stop="dialog = true">mdi-login</v-icon> | ||
<v-dialog v-model="dialog" max-width="290"> | ||
<v-card> | ||
<v-card-title class="text-h6">새벽에 로그인 하시겠어요?</v-card-title> | ||
|
||
<v-card-actions> | ||
<v-spacer></v-spacer> | ||
|
||
<v-btn color="#B2A4D4" text @click="dialog = false">아니요</v-btn> | ||
|
||
<v-btn color="#B2A4D4" text @click="login">네, 할게요</v-btn> | ||
</v-card-actions> | ||
</v-card> | ||
</v-dialog> | ||
</div> | ||
</template> | ||
|
||
<script> | ||
import { mapMutations } from 'vuex'; | ||
import { SHOW_SNACKBAR } from '../store/shared/mutationTypes'; | ||
export default { | ||
name: 'LoginButton', | ||
data() { | ||
return { | ||
dialog: false | ||
}; | ||
}, | ||
methods: { | ||
...mapMutations([SHOW_SNACKBAR]), | ||
login() { | ||
this.$router.push('/signin'); | ||
} | ||
} | ||
}; | ||
</script> | ||
|
||
<style></style> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.