This repository has been archived by the owner on Jun 1, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 244
Call steps asynchronously #45
Comments
Hi @pimboden |
cristijora
added a commit
that referenced
this issue
Sep 11, 2017
Thinking a bit more about this, I think adding scoped slots for tab content is the best approach. <tab-content>
<template scope="props">
<step1 v-if="props.active"></step1>
</template>
</tab-content> Which will trigger Here is a fiddle more close to your example I think If the approach is ok with you, I will publish to npm a new version |
Released 0.6.6 |
Thank you. |
Sign up for free
to subscribe to this conversation on GitHub.
Already have an account?
Sign in.
Hello.
I'm trying to load my step-templates only when they are clicked.
Some of my steps have to load some data through ajax after loaded.
Right now, every steps is getting the data in the "created" life cycle of vue.
But I would like them to get the data only when the step becomes active. I there a way to do that. I haven't found anything in the documentation
Thanks for this fantastic component!
The text was updated successfully, but these errors were encountered: