Merge pull request #2283 from sei0o/patch-2266

fix #2266
This commit is contained in:
syuilo 2018-08-17 19:24:10 +09:00 committed by GitHub
commit 9776d8e06b
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 15 additions and 7 deletions

View file

@ -44,7 +44,12 @@ import Vue from 'vue';
import * as anime from 'animejs';
export default Vue.extend({
props: ['source', 'compact', 'v'],
data() {
return {
v: this.$store.state.device.visibility
}
},
props: ['source', 'compact'],
mounted() {
this.$nextTick(() => {
const popover = this.$refs.popover as any;
@ -92,6 +97,7 @@ export default Vue.extend({
},
methods: {
choose(visibility) {
this.$store.commit('device/setVisibility', visibility);
this.$emit('chosen', visibility);
this.$destroy();
},