pub fn Select(props: SelectProps) -> impl IntoViewExpand description
A labelled dropdown built from (value, text) option pairs, bound to a String
signal. Emits the selected option value through on_change.
§Required Props
- label:
impl Into<String> - value:
Signal<String> - options:
Vec<(String, String)> - on_change:
Callback<String>
§Optional Props
- disabled:
impl Into<Signal<bool>>