pub fn onmouseup<E: EventReturn<T>, T>( _f: impl FnMut(Event<MouseData>) -> E + 'static, ) -> Attribute
The mouseup event fires when the user ends the click in an element with the left button of the mouse.
mouseup
Event Data: MouseData
MouseData
fn app() -> Element { rsx!( rect { width: "100", height: "100", background: "red", onmouseup: |_| println!("Clicked!") } ) }