make adventurer choice closeable by clicking on the slot again

This commit is contained in:
2023-06-26 17:12:46 +02:00
parent acdd8f6964
commit 816c1fb0e7
+3 -1
View File
@@ -70,7 +70,9 @@ export default defineComponent({
},
methods: {
closeSelect() {
this.selection = false;
setTimeout(() => {
this.selection = false;
}, 0);
}
}
})