Closed Marcisbee closed 6 years ago
Adds new event after{ActionName}.
after{ActionName}
class { state = { count: 0, } @action change(count) { return { count } } on = { afterChange() { console.log('Count just changed to', this.state.count); } } }
Adds new event
after{ActionName}
.Example usage