I have trouble to test something simple like this
<input value.bind="message">
Aurelia doc says it will update model on “change” and “input” event. https://aurelia.io/docs/binding/binding-behaviors#updatetrigger
I try to use jQuery to mutate the input, then manually trigger a “change” event. But my model “message” still doesn’t update.
jQuery('input').val('test').trigger('change');
Here is a gistrun to demonstrate my problem. Did I do something wrongly?