shadow
shadow copied to clipboard
[Vue 2] Use Component Styles
I don't know if theres an existing issue about this but is there anyway to use component styles?
<shadow-root>
<CustomComponent /> // use styles that are inside the vue file
<p>123</p>
</shadow-root>
For styling :
mounted() { var shadow_css = new CSSStyleSheet; shadow_css.replaceSync(YOUR_CSS) this.$el.shadowRoot.adoptedStyleSheets = [ shadow_css ]; }