Git Product home page Git Product logo

Comments (4)

toybz avatar toybz commented on July 19, 2024

Hello @vinosamari

This issue will most likely be because the updated value is not passed to the SDK.

Please can you share your payment component?

NB: Please use dummy values for any sensitive data like mobile number, email, API Keys, etc.

from vue-v3.

vinosamari avatar vinosamari commented on July 19, 2024

@toybz Thank you for reaching out.
This is the Cart with the bound input fields.
I want to pass the email into the field to the SDK for payments as opposed to hard-coding it.

from vue-v3.

toybz avatar toybz commented on July 19, 2024

Hello @vinosamari

Thank you for sharing.

Please move the paymentData out of the Data prop, and set it as a computed property instead.
Please see the updated code below:

 data() {
  return {
    customerName: "",
    customerEmail: "",
    customerPhone: "",
    checkedOut: false,
    cartCount: this.$store.state.cartCount,
    orderTotal: this.$store.state.orderTotal,
    orders: this.$store.state.cart,
   
}
},

computed: {

paymentData(){
return {
      tx_ref: this.generateReference(),
      amount: this.orderTotal,
      currency: "GHS",
      payment_options: "card,ussd,mobilemoney",
      redirect_url: "https://lumenbarandgrill.com/success",
      customer: {
        name: this.customerName,
        email: this.customerEmail,
        phone_number: this.customerPhone,
      },
      customizations: {
        title: "Lumen Bar & Grill",
        description: "Online order payment",
        logo: "https://flutterwave.com/images/logo-colored.svg",
      },
      callback: this.makePaymentCallback,
      onclose: this.closedPaymentModal,
    }
}
  }

Please try this and let me know if it works, best regards

from vue-v3.

vinosamari avatar vinosamari commented on July 19, 2024

@toybz Will do right away. Thanks again.

UPDATE: Works like a charm.🎉

from vue-v3.

Related Issues (17)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.