mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 14:29:22 -05:00
813 B
813 B
Time Picker
use thaw::chrono::prelude::*;
let value = create_rw_signal(Some(Local::now().time()));
view! {
<TimePicker value />
}
TimePicker Props
Name | Type | Default | Description |
---|---|---|---|
class | MaybeSignal<String> |
Default::default() |
Addtional classes for the time picker element. |
value | RwSignal<Option<NaiveTime>> |
Default::default() |
Set the TimePicker value. |
attr: | Vec<(&'static str, Attribute)> |
Default::default() |
The dom attrs of the input element inside the component. |