3 个版本

0.1.2 2024 年 7 月 18 日
0.1.1 2024 年 7 月 18 日
0.1.0 2024 年 7 月 18 日

#1718 in 网页开发

Download history 236/week @ 2024-07-13 41/week @ 2024-07-20 31/week @ 2024-07-27

每月 308 次下载

MIT 许可证

13KB

htmlrs

github crates.io

使用方法

cargo add htmlrs

查看 examples 文件夹!

use htmlrs::{component, html, view, Children, IntoView};

#[component]
fn Text(text: String) -> impl IntoView {
    view! {<span>{text}</span>}
}

#[component]
fn TextInto(#[prop(into)] text: String) -> impl IntoView {
    view! {<span>{text}</span>}
}

#[component]
fn Page(children: Children) -> impl IntoView {
    view! {<div>{children()}</div>}
}

fn main() {
    let page = html! {
        <Page>
            <Text text="hello".to_string() />
            <TextInto text="world" />
        </Page>
    };
    println!("{}", page);
    assert_eq!(page, "<div><span>hello</span><span>world</span></div>")
}

依赖项

~22–36MB
~558K SLoC