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