跳至主要内容
版本:0.21

片段

html! 宏始终需要一个根节点。为了解决此限制,可以使用“空标签”(也称为“片段”)。

use yew::prelude::*;

html! {
<>
<div></div>
<p></p>
</>
};