I created this script and attached it to an actor:
class FollowMouseBehavior extends Sup.Behavior {
update() {
this.actor.setPosition(Sup.Input.getMousePosition());
}
}
Sup.registerBehavior(FollowMouseBehavior);
It "roughly" follows the mouse cursor, but it drags behind a bit and I'm not sure why.