Closed terrablue closed 2 years ago
SSR web components should support slots.
Parent component:
<child-component attribute="${value"}> <div>Some content</div> </child-component>
Child component:
<h1>Child component</h1> <slot /> <div>More content</div>
done as of 8c2f45a, currently supports only unnamed slots
SSR web components should support slots.
Parent component:
Child component: