pub trait DataComponentPropsBuilder: AsMut<AnyJsStaticProps> + HtmlCommonSharedPropsBuilder<HtmlDataElement> {
    fn default_value<TValue>(self, v: Option<TValue>) -> Self
    where
        TValue: AsHtmlTextValue
, { ... }
fn value<TValue>(self, v: Option<TValue>) -> Self
    where
        TValue: AsHtmlTextValue
, { ... } }

Provided methods

Implementors