You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
| default-value | optional, default date of the calendar | Date | anything accepted by `new Date()`| — |
298
-
| default-time | the time value to use when selecting date range|string[]|Array with length 2, each item is a string like `12:00:00`. The first item for the start date and then second item for the end date | — |
298
+
| default-time | the default time value after picking a date | non-range: string / range: string[]|non-range: a string like `12:00:00`, range: array of two strings, and the first item is for the start date and second for the end date. `00:00:00` will be used if not specified| — |
299
299
| value-format | optional, format of binding value. If not specified, the binding value will be a Date object | string | see [date formats](#/en-US/component/date-picker#date-formats)| — |
300
300
| name | same as `name` in native input | string | — | — |
301
301
| unlink-panels | unllink two date-panels in range-picker | boolean | — | false |
@@ -233,7 +244,7 @@ DateTimePicker se deriva de DatePicker y TimePicker. Por una explicación más d
233
244
<divclass="block">
234
245
<spanclass="demonstration">Start date time 12:00:00</span>
235
246
<el-date-picker
236
-
v-model="value5"
247
+
v-model="value6"
237
248
type="datetimerange"
238
249
start-placeholder="Start Date"
239
250
end-placeholder="End Date"
@@ -243,7 +254,7 @@ DateTimePicker se deriva de DatePicker y TimePicker. Por una explicación más d
243
254
<divclass="block">
244
255
<spanclass="demonstration">Start date time 12:00:00, end date time 08:00:00</span>
245
256
<el-date-picker
246
-
v-model="value6"
257
+
v-model="value7"
247
258
type="datetimerange"
248
259
align="right"
249
260
start-placeholder="Start Date"
@@ -257,8 +268,8 @@ DateTimePicker se deriva de DatePicker y TimePicker. Por una explicación más d
257
268
exportdefault {
258
269
data() {
259
270
return {
260
-
value5:'',
261
-
value6:''
271
+
value6:'',
272
+
value7:''
262
273
};
263
274
}
264
275
};
@@ -285,7 +296,7 @@ DateTimePicker se deriva de DatePicker y TimePicker. Por una explicación más d
285
296
| picker-options | opciones adicionales, Comprueba la tabla de mas abajo | object | — | {} |
286
297
| range-separator | separador de rango | string | - | '-' |
287
298
| default-value | opcional, fecha predeterminada del calendario | Fecha | cualquier cosa aceptada por `new Date()` — ||
288
-
| default-time | the time value to use when selecting date range|string[]| Array with length 2, each item is a string like `12:00:00`. The first item for the start date and then second item for the end date| — |
299
+
| default-time | the default time value after picking a date | non-range: string / range: string[]| non-range: a string like `12:00:00`, range: array of two strings, and the first item is for the start date and second for the end date. `00:00:00` will be used if not specified | —|
289
300
| value-format | opcional, formato de valor de enlazado. Si no se especifica, el valor de enlazado será un objeto Date | cadena | ver [date formats](#/es/component/date-picker#date-formats)| — |
290
301
| name | igual que `name` en la entrada nativa | string | — | — |
291
302
| unlink-panels | desconectar dos date-panels en range-picker | boolean | — | false |
0 commit comments