Skip to content

Latest commit

 

History

History
42 lines (32 loc) · 593 Bytes

README.md

File metadata and controls

42 lines (32 loc) · 593 Bytes

nat-alipay

Installation

weexpack plugin add nat-alipay
npm i natjs

Usage

Use in weex project (.vue/.we)

<script>
import Nat from 'natjs'

// pay
Nat.alipay.pay({
    info: {
        // alipay pay info object
    },
    scheme: 'your app scheme'
})

// auth
Nat.alipay.auth({
    info: {
        // alipay auth info object
    },
    scheme: 'your app scheme'
})

</script>

See the Nat Documentation for more details.