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>