This commit is contained in:
syuilo
2018-09-15 21:53:04 +09:00
parent 7b2b7d1456
commit 25b0a93acd
20 changed files with 35 additions and 31 deletions

View File

@@ -19,11 +19,11 @@ export default Vue.extend({
methods: {
cancel() {
this.$emit('canceled');
this.$destroy();
this.destroyDom();
},
ok() {
this.$emit('selected', (this.$refs.browser as any).folder);
this.$destroy();
this.destroyDom();
}
}
});