[Vuejs]-Error initiating Plaid Link API to Vue frontend

0👍

One thing that stands out to me is the line token : this.getLinkToken(),getLinkToken is an async method, so I’d expect you’d want to await the results. I wonder if without the await you are ending up trying to initialize Link before you actually have the Link token.

In general, if you’re stuck on any of the basic bits of the Plaid integration, I’d recommend looking at a minimum viable implementation like the Tiny Quickstart and using that as the skeleton you can build on for your implementation.

Leave a comment