This commit is contained in:
syuilo 2018-12-10 01:44:43 +09:00
parent 6967def6c8
commit 98a2953c9c
No known key found for this signature in database
GPG key ID: BDC4C49D06AB9D69

View file

@ -43,10 +43,17 @@ export default Vue.extend({
},
mounted() {
document.cookie = `i=${this.$store.state.i.token}`;
this.$watch('$store.state.i', () => {
if (this.$store.state.i.twitter) {
if (this.twitterForm) this.twitterForm.close();
}
if (this.$store.state.i.discord) {
if (this.discordForm) this.discordForm.close();
}
if (this.$store.state.i.github) {
if (this.githubForm) this.githubForm.close();
}
}, {
deep: true
});