-
-
Notifications
You must be signed in to change notification settings - Fork 379
Open
Labels
Description
What about namespace separator?
Example:
components
| - Dialog
|---- Dialog.vue
|---- Window.vue
|---- Header.vue
|---- Footer.vue
Page.vue
<Dialog> <!-- this mathes to a component named as the directory in which it is located -->
<Dialog.window>
<Dialog.window.header> <!-- ... --> </Dialog.window.header>
<Dialog.window.Content> <!-- ... --> </Dialog.window.content>
<Dialog.window.footer> <!-- ... --> </Dialog.window.footer>
</Dialog.Window>TemaSM and chasegiunta