You can use can.trigger to accomplish this:
- var value = myControl.options.val();
- can.trigger(myControl.options.val, 'change', [value, value]);
The data that is expected with a compute's change event is the new value and old value.