Skip to main content
Version: Next

条件渲染

If 块

要有条件地渲染一些标记,我们将其包装在 if 块中:

use yew::prelude::*;

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