
Security News
US Government Forces Anthropic to Pull Claude Fable Days After Launch
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.
paystack-vue
Advanced tools
A vue 3 component for integrating the paystack payment gateway

⚡️ Vite - Instant HMR
🔥 The <script setup> syntax
🦾 TypeScript, of course
npm install paystack-vue
import { createApp } from 'vue'
import App from './App.vue'
import PayStack from 'paystack-vue'
const paystackKey = "pk_test_27c1ac1537f006ecefc74402138941790c586e67"
const app = createApp(App)
app.use(PayStack, {key: paystackKey})
app.mount('#app')
<script setup lang="ts">
const callback = (response) => {
alert(`Ref: ${response.reference}, status: ${response.status}`)
}
const onClose = () => {
alert("Payment modal closed")
}
</script>
<template>
<header>
<div class="wrapper">
<PayStack
:embedInModal="false"
:amount="200"
:callback="callback"
:onClose="onClose"
email="eve@mail.com"
firstName="firstname"
lastName="lastname"
paymentButtonClass="payment-button"
/>
</div>
</header>
</template>
<style>
.payment-button{
width: 100%;
background-color: green;
border-radius: 10px
}
</style>
Example configuration file for npm global usage
For more options checkout the paystack documentation
Keys used in this plugin are test keys only. Do well to change them to production ready keys.
git checkout -b feature-namegit commit -am 'Some commit message'git push origin feature-nameYou can reach me on twitter at Utitofon Udoekong
Dont forget to leave a star if you found this useful.
Special shout out to @iamraphson
FAQs
A vue 3 component for integrating the paystack payment gateway
We found that paystack-vue demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

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.

Security News
Anthropic says the directive cited national security concerns over a narrow jailbreak, but offered no specific technical details.

Security News
A network of 152 Chrome live wallpaper extensions hid ad tracking and made extension-driven traffic look like Google search clicks.

Company News
Socket’s first CISO brings deep experience securing high-growth SaaS companies as open source supply chain threats accelerate.