10 lines
168 B
JavaScript

module.exports = {
onMount: function () {
this.buttonClickCalls = [];
},
handleButtonClick: function () {
this.buttonClickCalls.push(arguments);
},
};