dioxus/examples/web_component.rs

33 lines
940 B
Rust
Raw Permalink Normal View History

2024-02-14 20:33:07 +00:00
//! Dioxus allows webcomponents to be created with a simple syntax.
//!
//! Read more about webcomponents [here](https://developer.mozilla.org/en-US/docs/Web/Web_Components)
//!
//! We typically suggest wrapping webcomponents in a strongly typed interface using a component.
use dioxus::prelude::*;
fn main() {
dioxus::launch(app);
}
fn app() -> Element {
2024-01-16 19:18:46 +00:00
rsx! {
2024-02-14 20:33:07 +00:00
div {
h1 { "Web Components" }
CoolWebComponent { my_prop: "Hello, world!".to_string() }
2024-02-14 20:33:07 +00:00
}
}
}
/// A web-component wrapped with a strongly typed interface using a component
#[component]
fn CoolWebComponent(my_prop: String) -> Element {
2024-02-14 20:33:07 +00:00
rsx! {
// rsx! takes a webcomponent as long as its tag name is separated with dashes
web-component {
2024-02-14 20:33:07 +00:00
// Since web-components don't have built-in attributes, the attribute names must be passed as a string
"my-prop": my_prop,
}
2024-01-14 05:12:21 +00:00
}
}