条件付きで HTML ノードの Binding を作成したい。
@dom def maybeEmpty: Binding[Node] = {
if (math.random > 0.5) {
<div>non-empty content</div>
}
}
ただし、コードはコンパイルされません。
error: type mismatch;
found : Unit
required: org.scalajs.dom.raw.Node
条件付きで HTML ノードの Binding を作成したい。
@dom def maybeEmpty: Binding[Node] = {
if (math.random > 0.5) {
<div>non-empty content</div>
}
}
ただし、コードはコンパイルされません。
error: type mismatch;
found : Unit
required: org.scalajs.dom.raw.Node