1.插件代码拷贝
- 下载后把components目录下/validCode/validCode.vue文件拷贝到自己项目目录下
2.插件使用
- vue页面使用
<template>
<view class="content">
<view>验证码:</view>
<validCode ref="code" :maxlength="4" :isPwd="false" @finish="getCode" ></validCode>
<view>密码:</view>
<validCode ref="pwd" :maxlength="6" :isPwd="true" @finish="getPwd"></validCode>
<button type="primary" @tap="clearCode">清空验证码</button>
<button type="primary" @tap="clearPwd">清空密码</button>
</view>
</template>
<script>
export default {
data() {
return {};
},
onLoad() {},
methods: {
//获取code码
getCode(val) {
console.log(val);
},
//获取密码
getPwd(val) {
console.log(val);
},
// 清空验证码
clearCode(){
this.$refs.code.clear();
},
// 清空密码
clearPwd(){
this.$refs.pwd.clear();
}
}
};
</script>
<style>
.content {
height: 400upx;
}
button{
margin-top: 30upx;
}
</style>
uni-app项目中使用都兼容