Skip to content

UnsignedInt8/ethpay.vue

Repository files navigation

ETHPay for Vue.js

A Button to the Web3, Demo

Quick Start

For Vue.js developers, just install it from NPM:

npm i ethpay.vue

Vue.js Usage

<template>
  <div id="app">
    <ETHPay
      caption="Try with"
      to="0x4ED9232873D1a0cac85d92497a5e9FA312Cfe30d"
      title="Try with ETH Pay"
      value="0.1"
    />
  </div>
</template>

<script lang="ts">
import { Component, Vue } from "vue-property-decorator";
import ETHPay from "ethpay.vue";
import "ethpay.vue/dist/ethpay.vue.css";

@Component({
  components: {
    ETHPay
  }
})
export default class App extends Vue {}
</script>
Props Desc Type Required
currency Currency symbol 'eth' Yes
to Address String Yes
value The amount of currency Number Yes
caption Button caption String No
title HTML Title String No
data The data append to Tx String, starts with '0x' No

Typescript

Typescript is supported.

LISENCE

MPL-2.0