Vue Braintree PayPal button

Vue component to integrate PayPal payments through Braintree using Vault flow.

Installation

Yarn

yarn add @mrjeffapp/vue-braintree-paypal-button
Bash

NPM

npm install --save @mrjeffapp/vue-braintree-paypal-button
Bash

Usage

Example: TokenGenerator.vue

<template>
    <BraintreePaypalButton v-bind:styles="{ shape: 'rect' }" :token="token" :env="environment" :locale="locale" v-on:error="onError" v-on:authorized="onAuthorize" v-on:canceled="onCancel" />
</template>

<script>

import BraintreePaypalButton from '@/components/BraintreePaypalButton.vue';

export default {
  name: 'TokenGenerator',
  components: {
    BraintreePaypalButton,
  },
  data() {
    return {
      environment: 'sandbox',
      token: 'token',
      locale: 'es_ES',
    };
  },
  methods: {
    onAuthorize: (nonce) => {
      console.log(nonce);
    },
    onCancel: () => {
      console.log('Cancelled');
    },
    onError: (error) => {
      console.error(error);
    },
  },
};
</script>

<style>
</style>

JavaScript

Component props

env

  • Type: String
  • Required: true
  • Values: production | sandbox

token

locale

styles

Component events

authorize

When customer authorize vault flow.

cancel

When customer cancel vault flow.

error

When an error occurs.

Developing

Project setup

yarn install
Bash

Compiles and hot-reloads for development

yarn serve
Bash

Compiles and minifies for production

yarn build
Bash

Lints and fixes files

yarn lint
Bash

Run unit tests

yarn test:unit
Bash

Run en to end tests

yarn test:e2e
Bash

GitHub

Latest commit to the master branch on 12-10-2022
Download as zip