2个版本

0.0.1 2020年11月7日
0.0.0 2020年11月7日

#846 in #template

MIT/Apache

5KB
92

lit-html-rs

一个Rust库,用于使用HTML模板库lit-html

use lit_html::*;

#[template("<div>Hello ${name}</div>")]
pub struct HelloWorldTemplate {
    pub name: String,
}

#[no_mangle]
pub fn main() {
    let template = HelloWorldTemplate {
        name: "Richard".to_string(),
    };
    render(template.execute(), js::DOM_BODY);
}

依赖项

~1.5MB
~35K SLoC