2017-11-22 16:46:18 -08:00

9 lines
134 B
JavaScript

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