Function bindChildren

  • Adds children to element. A nested array of children will be recursively appended to element in the order that they appear. Values null, undefined, and false for children will be ignored.

    Parameters

    Returns void

    Remark

    This funcion will append children to element in the order that they appear. To remove children,

    See

    clearChildren

    Remark

    This function will sequentially append children to element. If element is already in the DOM (due to a ref for example), each child will cause DOM reflow when appended. To avoid this, wrap children in a Fragment when necessary.

Generated using TypeDoc