From 0a941bc071370d42c7cc16e2eb950c281b58cb7a Mon Sep 17 00:00:00 2001 From: Flo Edelmann Date: Wed, 28 Sep 2022 13:18:31 +0200 Subject: [PATCH] Fix docs code example for `vue/no-required-prop-with-default` --- docs/rules/no-required-prop-with-default.md | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/docs/rules/no-required-prop-with-default.md b/docs/rules/no-required-prop-with-default.md index 92800a0d3..418a4118b 100644 --- a/docs/rules/no-required-prop-with-default.md +++ b/docs/rules/no-required-prop-with-default.md @@ -60,7 +60,16 @@ This rule enforces all props with default values to be optional. default: 'Hello' } } + +``` + + + + +```vue +