object VNode

Source
VNode.scala
Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. VNode
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Type Members

  1. final case class Comment(content: String) extends VNode with Product with Serializable
  2. final case class Element(sel: String, data: VNodeData, children: List[VNode]) extends VNode with Product with Serializable
  3. final case class Text(content: String) extends VNode with Product with Serializable
  4. implicit final class VNodeOps extends AnyVal

Value Members

  1. def comment(content: String): VNode
  2. def element(sel: String, data: VNodeData, children: List[VNode]): VNode
  3. val empty: VNode
  4. implicit def fromString(s: String): VNode
  5. def text(content: String): VNode