maple:WASM中用于Rust的React式DOM库 源码

qqendanger11437 7 0 ZIP 2021-04-06 13:04:30

枫 具有细粒度React性的无VDOM的Web库。 入门 推荐的构建工具是 。 首先将maple-core添加到您的Cargo.toml : maple-core = { path = " ../../maple-core " } 将以下内容添加到您的src/main.rs文件中: use maple_core :: prelude :: * ; fn main () { let root = template! { p { # "Hello World!" } }; render (root); } 而已! 您有一个使用maple hello world程序。 要运行该应用程序,只需运行trunk serve --open并在Web浏览器中查看结果。 template! 巨集 maple使用templ

用户评论
请输入评论内容
评分:
暂无评论