跳至主要内容
版本:0.21

条件渲染

if 块

要以条件方式渲染一些标记,我们将其包装在 if 块中

use yew::prelude::*;

html! {
if true {
<p>{ "True case" }</p>
}
};