Skip to content

Commit

Permalink
chore: update examples
Browse files Browse the repository at this point in the history
  • Loading branch information
jclaessens97 committed Feb 7, 2024
1 parent 83b9184 commit ccf44e6
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -87,8 +87,8 @@ If you cannot use Vue composables for some reason, you can use the `PlaidLink` c
</template>
<script lang="ts" setup>
import type { PlaidLinkOnEvent, PlaidLinkOnSuccess } from './plaid/types';
import PlaidLink from '@/plaid/PlaidLink.vue';
import type { PlaidLinkOnEvent, PlaidLinkOnSuccess } from '@jcss/vue-plaid-link';
import PlaidLink from '@jcss/vue-plaid-link';
// ...
</script>
Expand Down
4 changes: 2 additions & 2 deletions examples/component.vue
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@
import { computed } from 'vue';
import { useFetch } from '@vueuse/core';
import type { PlaidLinkOnExit } from '../src/types';
import type { PlaidLinkOnEvent, PlaidLinkOnSuccess } from './plaid/types';
import PlaidLink from '@/plaid/PlaidLink.vue';
import type { PlaidLinkOnEvent, PlaidLinkOnSuccess } from '@jcss/vue-plaid-link';
import { PlaidLink } from '@jcss/vue-plaid-link';
const onSuccess: PlaidLinkOnSuccess = (publicToken, metadata) => {
// send public_token to your server
Expand Down

0 comments on commit ccf44e6

Please sign in to comment.