📌  相关文章
📜  在反应日期选择器上使用 yup 设置日期范围 - Javascript 代码示例

📅  最后修改于: 2022-03-11 15:03:04.860000             🧑  作者: Mango

代码示例1
const YourSettingSchema = Yup.object().shape({
  dateOfBirth: Yup.string()
    .nullable()
    .test('Date of Birth', 'Should be greather than 18', function(value) {
      return moment().diff(moment(value), 'years') >= 18;
    }),
});