Replies: 1 comment
-
|
Released in 1.6.0 |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
This is a small DX improvement so we can cleanly group related components, I'm thinking to allow the discovery of index.html inside subdirectories. To demonstrate:
Say I have a sidebar component. And in the sidebar I have a block, title, link. The current way I have 2 choices:
Con: This requires us to use
<c-sidebar.sidebar />for the main component.Or
Con: This scatters component-related files around.
Suggestion:
This allows us to access the main component like
<c-sidebar />whilst still being able to access its sub components like<c-sidebar.title />Beta Was this translation helpful? Give feedback.
All reactions