I struggle in creating nested components where each layer includes templates:
<wizard>
<step name="first">Do this step first!</step>
<step name="second">This should follow</step>
</wizard>
(full example: http://jsfiddle.net/maxhq/9o4qxd7t/)
I only get templates to work either for parent or for child components, never for both.
- if parent has no template and is used with
<... inline-template>
, child components (and their templates) are evaluated (like in http://jsfiddle.net/hajkrupo/3/) - if parent includes a template (even with special tag
<content>
), then the child components do not get inserted/evaluated
Can this be solved in vue.js?