mirror of
https://github.com/adoyle0/thaw.git
synced 2025-01-23 22:39:23 -05:00
3684f5961b
* demo: refactor docs * demo: refactor docs * demo: refactor guide docs * chore: workflow add listens to the demo_markdown * demo: refactor mobile docs
18 lines
574 B
Markdown
18 lines
574 B
Markdown
# Date Picker
|
|
|
|
```rust demo
|
|
use thaw::chrono::prelude::*;
|
|
let value = create_rw_signal(Some(Local::now().date_naive()));
|
|
|
|
view! {
|
|
<DatePicker value/>
|
|
}
|
|
```
|
|
|
|
### DatePicker Props
|
|
|
|
| Name | Type | Default | Desciption |
|
|
| --- | --- | --- | --- |
|
|
| class | `MaybeSignal<String>` | `Default::default()` | Addtional classes for the date picker element. |
|
|
| value | `RwSignal<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. |
|