diff --git a/docs/.vuepress/components/guide/datepicker/time-adjust.vue b/docs/.vuepress/components/guide/datepicker/time-adjust.vue index a4453169c..1d74748ab 100644 --- a/docs/.vuepress/components/guide/datepicker/time-adjust.vue +++ b/docs/.vuepress/components/guide/datepicker/time-adjust.vue @@ -25,11 +25,11 @@ export default { return { customer: { name: 'Nathan Reyes', - birthday: '1983-01-21T02:30:00-5:00', + birthday: '1983-01-21T07:30:00.000Z', }, modelConfig: { type: 'string', - mask: 'YYYY-MM-DDTHH:mm:ssXXX', + mask: 'iso', timeAdjust: '12:00:00', // Assign noon time to selected dates }, }; diff --git a/docs/datepicker.md b/docs/datepicker.md index 6681b89b8..17edd9922 100644 --- a/docs/datepicker.md +++ b/docs/datepicker.md @@ -268,11 +268,11 @@ data() { return { customer: { name: 'Nathan Reyes', - birthday: '1983-01-21T02:30:00-5:00', + birthday: '1983-01-21T07:30:00.000Z', }, modelConfig: { type: 'string', - mask: 'YYYY-MM-DDTHH:mm:ssXXX', + mask: 'iso', timeAdjust: '12:00:00', }, }