总结一下 关于input输入框的一些默认样式修改
style标签里面不要加scoped
如果有需要加scoped 可以写两个style标签
修改input框placeholder的默认样式
<style>
::-webkit-input-placeholder {
color: #737575 !important;
}
</style>
去除获取焦点时的样式
去掉这个蓝色边框
<style>
.ant-input:focus {
border: none;
box-shadow: none;
}
</style>
效果
去除验证错误的样式
去掉这个红色边框
<style>
.has-error .ant-input:focus {
border: none;
box-shadow: none;
}
</style>
效果