mirror of
https://github.com/DioxusLabs/dioxus
synced 2024-11-10 06:34:20 +00:00
9167cd9dec
* fix most typos, add crate-ci/typos to CI --------- Co-authored-by: Jonathan Kelley <jkelleyrtp@gmail.com>
32 lines
932 B
Rust
32 lines
932 B
Rust
//! 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() {
|
|
launch(app);
|
|
}
|
|
|
|
fn app() -> Element {
|
|
rsx! {
|
|
div {
|
|
h1 { "Web Components" }
|
|
CoolWebComponent { my_prop: "Hello, world!".to_string() }
|
|
}
|
|
}
|
|
}
|
|
|
|
/// A web-component wrapped with a strongly typed interface using a component
|
|
#[component]
|
|
fn CoolWebComponent(my_prop: String) -> Element {
|
|
rsx! {
|
|
// rsx! takes a webcomponent as long as its tag name is separated with dashes
|
|
web-component {
|
|
// Since web-components don't have built-in attributes, the attribute names must be passed as a string
|
|
"my-prop": my_prop,
|
|
}
|
|
}
|
|
}
|