From f96a09472740ac17facd756802b041d64c588b87 Mon Sep 17 00:00:00 2001 From: Nathan Reyes Date: Sun, 24 Jan 2021 13:23:00 -0600 Subject: [PATCH] Fix mask in docs example --- docs/.vuepress/components/guide/datepicker/time-adjust.vue | 4 ++-- docs/datepicker.md | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) 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', }, }