pub type Link = Option<Path>;
Expand description
Represents a hyperlink.
Note: This is applicable only for HTML/Leptos render attributes and will be ignored for other render types.
For example, this corresponds to an HTML href
attribute.
Aliased Type§
enum Link {
None,
Some(String),
}