Skip to main content
Version: Next

條件渲染

If 區塊

要有條件地渲染一些標記,我們將其包裝在 if 區塊中:

use yew::prelude::*;

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