Module perspective_viewer::components
source · Expand description
components contains all Yew Component types, but only exports the 4
necessary for public Custom Elements. The rest are internal components of
these 4.
Modules§
containersare generic container-like components for collections of otherComponenttypes.- A module for form controls (though form controls like
<Select>which are also container elements should go in thecontainersmodule). Components in this module should not be imported from thecomponentsparent module directly. - A micro-framework for associating local CSS snippets with
yew::Components in a Custom Element’sShadowRoot. Embedding a<LocalStyle>element will only create the underlying<style>tag once (whenComponent::view()is called the first time), even if multiple copies of theComponentexist in the tree.