9 lines
144 B
JavaScript

module.exports = {
onCreate: function () {
this.clicked = false;
},
handleButtonClick: function () {
this.clicked = true;
},
};