1.0.2 • Published 6 years ago

@edu-fe/weixin v1.0.2

Weekly downloads
-
License
UNLICENSED
Repository
-
Last release
6 years ago

@edu-fe/weixin

# npm 安装
$ npm i -S @edu-fe/weixin

# yarn 安装
$ yarn add @edu-fe/weixin
// 使用方式
import * as weixin from '@edu-fe/weixin'

// 初始化
weixin.init()
  .then(() => {
    // blabla...
  })

// 设置分享
weixin.setShare()
  .then(err => {
    // 分享成功
  })
  .catch(err => {
    // 分享失败
  })