Module yew::virtual_dom

source ·
Expand description

This module contains the implementation of reactive virtual dom concept.

Re-exports

pub use self::vcomp::VComp;
pub use self::vlist::VList;
pub use self::vnode::VNode;
pub use self::vtag::VTag;
pub use self::vtext::VText;

Modules

This module contains the implementation of a virtual component VComp.
This module contains fragments implementation.
This module contains the implementation of abstract virtual node.
This module contains the implementation of a virtual element node VTag.
This module contains the implementation of a virtual text node VText.

Traits

Listener trait is an universal implementation of an event listener which helps to bind Rust-listener to JS-listener (DOM).
This trait provides features to update a tree by other tree comparsion.