New Research: Supply Chain Attack on Axios Pulls Malicious Dependency from npm.Details →
Socket
Book a DemoSign in
Socket

vue3-paystack

Package Overview
Dependencies
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue3-paystack

Paystack Plugin for Vue 3

latest
Source
npmnpm
Version
0.0.7
Version published
Weekly downloads
286
21.19%
Maintainers
1
Weekly downloads
 
Created
Source

Vue3-Paystack

vue3-paystack allows you to accept payments in your vue application created with vue 3. The component is easily customisable.

NPM

npm i vue3-paystack

Usage

<template>
     <paystack
        buttonClass="'button-class btn btn-primary'"
        buttonText="Pay Online"
        :publicKey="publicKey"
        :email="email"
        :amount="amount"
        :reference="reference"
        :onSuccess="onSuccessfulPayment"
        :onCancel="onCancelledPayment">
    </paystack>
</template>

 <script>
import paystack from "vue3-paystack";

export default {
  components: {
    paystack,
  },
}
  </script>
 

Documentation

A more detailed guide can be found here

Want to say thanks?

If this has been helpful, kindly share the link to other and a star on the github repo would be helpful too

License

Licensed under MIT License. Click for details.

Keywords

Paystack

FAQs

Package last updated on 16 Jun 2025

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts