Forgot to toggle isActive when clicked.

This commit is contained in:
2020-02-20 13:56:56 +01:00
parent 14ac780aa5
commit 20b8692c91

View File

@@ -23,6 +23,7 @@ export default {
},
methods: {
emit() {
this.isActive = !this.isActive;
this.$emit('click')
}
}