changed '-' to '.' in handler for consistency

This commit is contained in:
Leah Schumann 2023-02-01 11:08:17 -05:00
parent aa2f50199e
commit 8c63e1bea2

View file

@ -217,7 +217,7 @@ export default {
}, },
handleButtonEvent(event) { handleButtonEvent(event) {
const eventName = event.eventName; const eventName = event.eventName;
this.$emit(`buttonEvent-${eventName}`, event.args); this.$emit(`buttonEvent.${eventName}`, event.args);
}, },
}, },
components: { components: {