1.0.0 • Published 2 months ago

facial-login v1.0.0

Weekly downloads
-
License
-
Repository
-
Last release
2 months ago

安装依赖

npm install 或 yarn

启动

npm run serve

生成发布用的代码

npm run build

使用方法

// env     ---- 当前环境,prod时请求生产,其他默认请求测试环境(代码逻辑在src/api/base.js)
// showCam ---- 是否显示人脸识别video,默认false
// width   ---- video宽度,默认375
// height  ---- video高度,默认282
// @handleError  ---- 错误信息,{code: 状态码, message: 错误信息}
// @showTips     ---- 动作提示等提示信息, string
// @success      ---- 人脸识别成功,返回接口数据 {receipt: 照片回执,token: 人脸识别临时token}
<FacialLogin 
    :showCam = "true" 
    :width = "375"
    :height = "282"
    @handleError = "handleError"
    @showTips = "showTips"
    @success = "success"
>
</FacialLogin>