摘要:
new Date().toLocaleDateString().split('/').map((t) => t.padStart(2, '0')).join('-');
阅读全文
摘要:
/** * 可在每四位字符间插入一个空格的输入框 */ import { Input } from 'antd'; import { useEffect } from 'react'; const InputGap = (props: any) => { const { useGap, value,
阅读全文