-
-
Notifications
You must be signed in to change notification settings - Fork 100
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
WaitFor is broken #66
Comments
Did you forget |
Actually I'm not forget to |
I just integrated Here's my sample. I've got a component with a method function: export default {
// ...
methods: {
init: waitFor('initializing', async () => {
await this.$store.dispatch('projects/projects/init');
}),
}
} Inside the async function, logging
|
Try use export default {
// ...
methods: {
init: waitFor('initializing', async function() {
await this.$store.dispatch('projects/projects/init');
}),
}
} |
I can't use
waitfor
helper for any situation.Here is how I install the VueWait instance.
I think i need a
waitFor
method from wait instance, but it had nothing.The text was updated successfully, but these errors were encountered: