npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

vue-pass-checkout-button-v1

v0.0.4

Published

### NPM Installation

Downloads

7

Readme

Pass Inline Checkout for Vue

NPM Installation

Run the command below in your Terminal to Install the component

npm i vue-pass-checkout-button-v1

Importing the vue-pass-checkout-button-v1

Go to your component and import the Component and add it in your component as suggested below

import passBtn from "vue-pass-checkout-button-v1"

export default {
  name: 'App',
  components: {
    passBtn
  },
}

Feeding the component with the write data

You are to feed the component with the checkout data using the data prop, and the function you want to run when the checkout is canceled on onClose and the function to run when the checkout is completed on onSuccess

<passBtn
   :data="clientInfo" 
   :onClose="onClose"
   :onSuccess="onSuccess"
 />

In clientInfo here you have various variables that is needed to complete checkout

  • Src:This is the Image of the product you want to buy
  • Amount: Product Amount
  • Url: this is the Website Url
  • Name: Name of product
  • Email: email of buyer
  • Qty: Quantity of products sold
  • Description: Description of product
  • Key: Api Key automatically generated for you as a Pass Merchant

  data() {
    return {
     clientInfo: {
      src: 'https://Cap-front1.png',
      amount: '10',
      url: 'jumia.com.ng',
      name:'Cap',
      email: '[email protected]',
      qty:'1',
      description:'Great Pass Cap',
      key:'pass_sec_test_ewxaVQBbr5JTt6P2tpIUUAZGdpqzRckV',
    }
   }

 },

You can add the method for closed checkout on onClose() and for completed checkout onSuccess()


  methods: {
    onClose(){
      alert('It Closed oo')
    },

    onSuccess: ()=>{
      alert('It Succeeded oo')
    }
  }