vue-plaid-link
vue-plaid-link copied to clipboard
American banks
Hi guys, im trying to integrate plaid into my vue project for American users. After install the module and set the link_token , I noticed that there are not american banks listed to sign up. I tryed passing the country codes array doing:
<template>
<section>
<plaid-link
env="sandbox"
token="link-sandbox-1c47dc86-6a67-4503-aae5-123864a0de5c"
:countryCodes="country"
clientName="Test App"
product="transactions"
v-bind="{ onSuccess }"
>
Open Plaid Link
</plaid-link>
</section>
</template>
<script>
import PlaidLink from "vue-plaid-link";
export default {
name: 'plaid',
components: { PlaidLink },
data() {
return {
country: ['US','CA']
};
},
methods: {
onSuccess(token) {
console.log(token);
},
},
}
</script>
How can I set the link initiator to show american banks ? Regards. Leandro.