## Date-picker(date-picker) 日付の入力にはdate-pickerを使用します。 ### 日付の入力 '日'で計測する基本的なdate-picker。 :::demo 測定は `type` 属性で決定されます。You can enable quick options via `shortcuts` property。無効な日付は関数 `disabledDate` で設定する。 ```html ``` ::: ### その他の測定 標準のdate-pickerコンポーネントを拡張することで、週、月、年、または複数の日付を選択することができます。 :::demo ```html
Week
Month
Year
Dates
``` ::: ### 日付範囲 日付範囲のピックに対応しています。 :::demo 範囲モードの場合、デフォルトでは左右のパネルはリンクされています。2つのパネルを独立して現在の月を切り替えたい場合は、`unlink-panels` 属性を使うことができます。 ```html ``` ::: ### 月の範囲 月の範囲のピッキングに対応しています。 :::demo 範囲モードの場合、デフォルトでは左右のパネルはリンクされています。2つのパネルを独立して現在の年を切り替えたい場合は、`unlink-panels` 属性を使うことができます。 ```html ``` ::: ### デフォルト値 ユーザが日付を指定していない場合は、デフォルトで今日のカレンダーを表示する。別の日付を設定するには `default-value` を用いることができる。その値は `new Date()` で解析可能でなければならない。 型が `daterange` の場合、`default-value` は左側のカレンダーを設定する。 :::demo ```html ``` ::: ### 日付のフォーマット 入力ボックスに表示されるテキストの書式を制御するには `format` を用いる。 デフォルトでは、コンポーネントは `Date` オブジェクトを受け入れて出力します。 Check the list [here](https://day.js.org/docs/en/display/format#list-of-all-available-formats) of all available formats of Day.js. :::warning 大文字化に注意 ::: :::demo ```html ``` ::: ### 開始日と終了日のデフォルト時刻 日付範囲を選択する際に、開始日と終了日に時間部分を割り当てることができます。 :::demo By default, the time part of start date and end date are both `00:00:00`. Setting `default-time` can change their time respectively. It accepts an array of up to two Date objects. The first string sets the time for the start date, and the second for the end date. ```html ``` ::: ### 属性 | Attribute | Description | Type | Accepted Values | Default | |---------- |-------------- |---------- |-------------------------------- |-------- | | value / v-model | バインディング値 | date(DatePicker) / array(DateRangePicker) | — | — | | readonly | date-pickerが読み取り専用かどうか | boolean | — | false | | disabled | date-pickerが無効かどうか | boolean | — | false | | size | インプットサイズ | string | large/small/mini | — | | editable | 入力は編集可能かどうか | boolean | — | true | | clearable | クリアボタンをみせるかどうか | boolean | — | true | | placeholder | 非範囲モード時のプレースホルダ | string | — | — | | start-placeholder | 範囲モードでの開始日のプレースホルダ | string | — | — | | end-placeholder | 範囲終了日のプレースホルダ | string | — | — | | type | ピッカーのタイプ | string | year/month/date/dates/datetime/ week/datetimerange/daterange/ monthrange | date | | format | 入力ボックスの表示値のフォーマット | string | see [date formats](#/en-US/component/date-picker#date-formats) | yyyy-MM-dd | | align | アライメント | left/center/right | left | | popper-class | date-pickerのドロップダウン用カスタムクラス名 | string | — | — | | range-separator | 範囲セパレータ | string | — | '-' | | default-value | オプション、カレンダーのデフォルトの日付 | Date | anything accepted by `new Date()` | — | | default-time | optional, the time value to use when selecting date range | Date[] | Array with length 2, each item is a Date. The first item for the start date and then second item for the end date | — | | name | ネイティブ入力の `name` と同じ | string | — | — | | unlink-panels | 範囲ピッカーで2つのデータパネルのリンクを解除する | boolean | — | false | | prefix-icon | カスタムプレフィックスアイコン | string | — | el-icon-date | | clear-icon | カスタムクリアアイコンクラス | string | — | el-icon-circle-close | | validate-event | フォームバリデーションをトリガするかどうか | boolean | - | true | | shortcuts | ショートカットオプションを設定するためのオブジェクトの配列は | object[{ text: string, value: Date }] | — | — | | disabledDate | 日付をパラメータとして、その日付が無効化されているかどうかを判断する関数です。ブーリアンを返す必要があります。 | function | — | — | ### ショートカット | Attribute | Description | Type | Accepted Values | Default | |---------- |-------------- |---------- |-------------------------------- |-------- | | text | ショートカットのタイトル | string | — | — | | onClick | コールバック関数は、ショートカットがクリックされたときに `vm` をパラメータとしてトリガーします。pick` イベントを発行することでピッカーの値を変更することができます。例: `vm.$emit('pick', new Date())`| function | — | — | ### イベント | Event Name | Description | Parameters | |---------|--------|---------| | change | ユーザーが値を確認したときにトリガされます。 | component's binding value | | blur | インプットがぼやけたときされます | component instance | | focus | 入力がフォーカスされているときにトリガされます。 | component instance | ### 方法 | Method | Description | Parameters | |------|--------|-------| | focus | インプットコンポーネントにフォーカス | — | ### スロット | Name | Description | |---------|-------------| | range-separator | カスタム範囲区切りコンテンツ |