generated from mitchell/rust_template
merge
This commit is contained in:
parent
a5fd4f85ee
commit
bd73591b9f
@ -6,6 +6,9 @@ use leptos::{Signal, View};
|
|||||||
pub struct SelectData {
|
pub struct SelectData {
|
||||||
pub(crate) name: String,
|
pub(crate) name: String,
|
||||||
pub(crate) label: Option<String>,
|
pub(crate) label: Option<String>,
|
||||||
|
/// The options for the select.
|
||||||
|
///
|
||||||
|
/// The first value is the string to display, the second is the value.
|
||||||
pub(crate) options: Vec<(String, String)>,
|
pub(crate) options: Vec<(String, String)>,
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user