// 定义组件
#[component(Backend = DomBackend)]
struct HelloWorld {
// 添加组件模板
template: template! {
<div class:hello>
"Hello world!"
</div>
}
}
// 实现 Component trait
impl Component for HelloWorld {
fn new() -> Self {
Self {
template: Default::default()
}
}
}
// 添加样式
stylesheet! {
class hello {
color = rgb(232, 152, 86);
}
}