2017-02-20 16:04:50 -07:00

9 lines
156 B
JavaScript

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