- 博客(3)
- 收藏
- 关注
原创 修改element 的el-radio的选中样式变成对勾
el-radio内部样式修改,用了穿透>>>.el-radio__input.is-checked .el-radio__inner::after { content: ""; width: 10px; height: 5px; border: 2px solid white; border-top: transparent; border-right: transparent; text-align: center; display:
2022-04-25 10:09:44 487 2
原创 vue3 自定义v-focus
directives: { focus: { inserted(el, {value}) { if(value){ const _el = el.getElementsByTagName('input')[0]; if(_el){ _el.focus(); } } }...
2022-03-22 14:49:24 1662
转载 如何天数转换为年,月,日
DateTime startDate = new DateTime(2010, 1, 1);DateTime endDate = new DateTime(2013, 1, 10);var totalDays = (endDate - startDate).TotalDays;var totalYears = Math.Truncate(totalDays / 365);var totalMonths = Math.Truncate((totalDays % 365) / 30);var rema
2022-03-12 14:45:00 2495
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人