vue-el stripe_Stripe Checkout的Vue插件

编程知识 行业动态 更新时间:2024-06-13 00:22:27

vue-el stripe

Vue条纹结帐 (Vue Stripe Checkout)

A vue plugin for Stripe checkout.

Stripe Checkout的Vue插件。

View Demo 查看演示 View Github 查看Github

安装 (Install)

yarn add vue-stripe-checkout
npm install vue-stripe-checkout

Vue条纹结帐 (Vue Stripe Checkout)

Stripe's new Checkout.

Stripe的新Checkout 。

Props

道具

<template>
  <stripe-checkout
    ref="checkoutRef"
    :pk="publishableKey"
    :items="items"
    :successUrl="successUrl"
    :cancelUrl="cancelUrl"
  >
    <template slot="checkout-button">
      <button @click="checkout">Shutup and take my money!</button>
    </template>
  </stripe-checkout>
</template>

<script>
import { StripeCheckout } from 'vue-stripe-checkout';
export default {
  components: {
    StripeCheckout
  },
  data: () => ({
    loading: false,
    publishableKey: process.env.PUBLISHABLE_KEY,
    items: [
      {
        sku: 'sku_FdQKocNoVzznpJ', 
        quantity: 1
      }
    ],
    successUrl: 'your-success-url',
    cancelUrl: 'your-cancel-url',
  }),
  methods: {
    checkout () {
      this.$refs.checkoutRef.redirectToCheckout();
    }
  }
}
</script>

Vue条纹元素 (Vue Stripe Elements)

Create custom Stripe form using Stripe Elements.

使用Stripe Elements创建自定义的Stripe表单。

Docs for additional Stripe Charge Object options like amount, description, currenct, etc.

其他Stripe Charge Object 选项的文档,例如amountdescriptioncurrenct等。

<template>
  <div>
    <stripe-elements
      ref="elementsRef"
      :pk="publishableKey"
      :amount="amount"
      @token="tokenCreated"
      @loading="loading = $event"
    >
    </stripe-elements>
    <button @click="submit">Pay ${{amount / 100}}</button>
  </div>
</template>

<script>
export default {
  data: () => ({
    loading: false,
    amount: 1000,
    publishableKey: process.env.PUBLISHABLE_KEY, 
    token: null,
    charge: null
  }),
  methods: {
    submit () {
      this.$refs.elementsRef.submit();
    },
    tokenCreated (token) {
      this.token = token;
      // for additional charge objects go to https://stripe/docs/api/charges/object
      this.charge = {
        source: token.card,
        amount: this.amount,
        description: this.description
      }
      this.sendTokenToServer(this.charge);
    },
    sendTokenToServer (charge) {
      // Send to server
    }
  }
}
</script>

翻译自: https://vuejsexamples/a-vue-plugin-for-stripe-checkout/

vue-el stripe

更多推荐

vue-el stripe_Stripe Checkout的Vue插件

本文发布于:2023-04-02 12:53:00,感谢您对本站的认可!
本文链接:https://www.elefans.com/category/jswz/8f31b16c91e2ed6cb2eae0546a0e5e57.html
版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系,我们将在24小时内删除。
本文标签:插件   el   vue   stripe_Stripe   Vue

发布评论

评论列表 (有 0 条评论)
草根站长

>www.elefans.com

编程频道|电子爱好者 - 技术资讯及电子产品介绍!