thaw/demo_markdown/docs/date_picker/mod.md

23 lines
721 B
Markdown
Raw Normal View History

# Date Picker
```rust demo
2024-02-07 22:38:02 +08:00
use chrono::prelude::*;
2024-07-24 23:52:38 +08:00
let value = RwSignal::new(Local::now().date_naive());
let option_value = RwSignal::new(Some(Local::now().date_naive()));
view! {
2024-07-24 23:52:38 +08:00
<Space vertical=true>
<DatePicker value/>
<DatePicker value=option_value/>
</Space>
}
```
### DatePicker Props
| Name | Type | Default | Desciption |
| --- | --- | --- | --- |
2024-02-09 22:44:22 +08:00
| class | `OptionalProp<MaybeSignal<String>>` | `Default::default()` | Addtional classes for the date picker element. |
| value | `Model<Option<NaiveDate>>` | `Default::default()` | Set the date picker value |
| attr: | `Vec<(&'static str, Attribute)>` | `Default::default()` | The dom attrs of the input element inside the component. |