pub fn onclick<'a>( _cx: &'a ScopeState, _f: impl FnMut(Event<MouseData>) + 'a ) -> Attribute<'a>
The click event will fire when the user clicks an element with the left-click.
click
Event Data: MouseData
fn app(cx: Scope) -> Element { render!( rect { width: "100", height: "100", background: "red", onclick: |_| println!("Clicked!") } ) }