现在使用日期选择框,只想要下面的日不想要上面的年月怎么做
在火狐的css调试上加一个display:none就可以了,但是在代码中用穿透和伪元素都无法实现
.myDatePicker>>>.el-date-picker__header::before {
display: none !important;
}
.myDatePicker>>>.el-date-picker__header {
display: none !important;
}
这应该再怎么修改
在你原来的style下面新加下面的