From 002ae4daff34d89b2ebbef42e884daf171bf70f6 Mon Sep 17 00:00:00 2001 From: NataliaTepluhina Date: Wed, 24 Feb 2021 09:21:37 +0100 Subject: [PATCH] fix: changed datetime to datetime-local --- src/guide/component-attrs.md | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/guide/component-attrs.md b/src/guide/component-attrs.md index 576d73ec3b..3f916a04c6 100644 --- a/src/guide/component-attrs.md +++ b/src/guide/component-attrs.md @@ -12,7 +12,7 @@ When a component returns a single root node, non-prop attributes will automatica app.component('date-picker', { template: `
- +
` }) @@ -26,7 +26,7 @@ In the event we need to define the status of the date-picker component via a `da
- +
``` @@ -91,7 +91,7 @@ app.component('date-picker', { inheritAttrs: false, template: `
- +
` }) @@ -105,7 +105,7 @@ With this new configuration, our `data-status` attribute will be applied to our
- +
```