pub fn onclick<__Marker>( _f: impl SuperInto<EventHandler<Event<MouseData>>, __Marker> ) -> Attribute
The click event fires when the user clicks an element with the left button of the mouse.
click
Event Data: MouseData
MouseData
fn app() -> Element { rsx!( rect { width: "100", height: "100", background: "red", onclick: |_| println!("Clicked!") } ) }