diff --git a/one/docs/components/date-picker.md b/one/docs/components/date-picker.md index 09c2ca1..4415cf9 100644 --- a/one/docs/components/date-picker.md +++ b/one/docs/components/date-picker.md @@ -30,7 +30,7 @@ | ``range`` | `boolean` | `false` | 是否选择日期范围。 | | ``selected`` | `Date | Array` | - | [^selected] | | ``today`` | `Date` | `new Date()` | 「今天」的日期。 | -| ``week-start`` | `number` | `calendar.weekStart` | 一周的起始。可进行[全局配置](./calendar#configs-calendar-weekstart)。 | +| ``week-start`` | `number` | `calendar.weekStart` | 一周的起始。可进行[全局配置](./calendar#configs-calendar-weekStart)。 | | ``fill-month`` | `boolean` | `true` | 当只有一个面板时,是否要在当前月份面板显示非本月日期。 | | ``date-class`` | `string | Array | Object | function` | `{}` | 特定日期的自定义 HTML `class`。传非函数时,数据格式为所有 Vue 支持的 `class` 表达式;传函数时,签名为 `function(Date): string | Array|Object`,返回值格式亦为所有 Vue 支持的 `class` 表达式。 | | ``disabled-date`` | `function(Date, Date=): boolean=` | `() => false` | 用于自定义指定日期是否禁用。第一个参数为需要判断是否禁用的日期。当处于范围选择过程中且已经选择了一个日期,会作为第二个参数传入。 |