cocoastorm / vue-paypal-checkout

A simple Vue.js wrapper component for paypal-checkout
MIT License
153 stars 67 forks source link

Items do not appear at the time of payment #88

Open Jack74r opened 5 years ago

Jack74r commented 5 years ago

Hi i'm using Nuxt and the products do not appear at the time of payment my itemsPaypal variable [ { "name": "kit 2K20", "quantity": 1, "description": "Brown hat.", "price": 15, "currency": "EUR" }, { "name": "kit 2 2K20", "quantity": 1, "description": "Brown hat.", "price": 20, "currency": "EUR" } ]

` <paypal-checkout env="sandbox" locale="fr_FR" :amount="total" currency="EUR" :client="credentials" :items="itemsPaypal" :experience="experienceOptions" v-on:payment-authorized="paymentAuthorized" v-on:payment-completed="paymentCompleted" v-on:payment-cancelled="paymentCancelled"

`