vant-ui
Version:
Mobile UI Components
31 lines (25 loc) • 916 B
Markdown
## 防水墙
用于验证真人操作,防止机器攻击
```html
<ui-waterwall ref="waterwall" ="onSuccess" ="onFail" :imgSrc="imgSrc" />
```
```js
data(){
return{
imgSrc:'/img.png' //图片地址
},
methods:{
onSuccess(){
this.$notify({ type: 'success', message: '验证通过' });
},
onFail(){
this.$notify({ type: 'danger', message: '验证错误' });
}
}
}
```
参数名 | 说明 | type | default
------------|-----------------------------|------------------------------|----------
imgSrc | 验证图片, 支持单图或多图 | String \ Array |
| 验证成功的回调 | function |
| 验证失败的回调 | function |