问题描述:
在ie edge 浏览器中,uni-easyinput 组件类型为password时,出现两个小眼睛图标,此为官方组件已存在的bug
解决思路:
在/uni_modules/uni-easyinput/components/uni-easyinput.vue组件中样式中增加以下代码
详细代码:
css
/*去除ie edge浏览器中密码框默认出现的小眼睛*/
.uni-easyinput__content-input ::-ms-reveal {
display: none;
}