From 8f047fcb3dbe2e871494b2dd7243650a022e7928 Mon Sep 17 00:00:00 2001 From: yosuke ota Date: Wed, 5 Oct 2022 17:16:43 +0900 Subject: [PATCH] chore: fix no-required-prop-with-default doc --- docs/rules/no-required-prop-with-default.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/docs/rules/no-required-prop-with-default.md b/docs/rules/no-required-prop-with-default.md index 38c0a0e8a..854226617 100644 --- a/docs/rules/no-required-prop-with-default.md +++ b/docs/rules/no-required-prop-with-default.md @@ -18,7 +18,7 @@ If a prop is declared with a default value, whether it is required or not, we ca So, a required prop with a default value is essentially the same as an optional prop. This rule enforces all props with default values to be optional. - + ```vue ``` - + ```vue