-
Notifications
You must be signed in to change notification settings - Fork 244
Generate steps with v-for #42
Comments
Hi @gazben I would recommend either using |
@cristijora Somehow this works:
The generated steps in order:
Should I use it this way? |
Yes. That's pretty much what I suggested. Keeping everything inside v-for. Just for simplicity, I would put everything inisde your <tab-content
v-for="(item, index) in pages"
v-bind:item="item"
v-bind:index="index"
v-bind:key="item.id"
:title="item.title"
:icon="item.icon">
</tab-content> Found an example. You can easily use |
Maybe I should update docs with this example since I would recommend the following approach from the last fiddle as it can cover many cases and it's pretty clean. |
Hi,
When I use v-for to generate the steps I end up with the steps mixed up. The generated ones are always the last.
The generated steps in order:
Did I miss something?
The text was updated successfully, but these errors were encountered: