From aaae326cdcce67c441b224b8c41ffb1440f00e4e Mon Sep 17 00:00:00 2001
From: Robin <44176707+MrAnyx@users.noreply.github.com>
Date: Wed, 2 Mar 2022 19:15:49 +0100
Subject: [PATCH] Fix typo in the sub component documentation
Fix typo in the Empty and OneItem objects
---
docs/snippets/vue/list-story-with-sub-components.3.js.mdx | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/docs/snippets/vue/list-story-with-sub-components.3.js.mdx b/docs/snippets/vue/list-story-with-sub-components.3.js.mdx
index 0ffa0b326f6e..8bc8bac87aee 100644
--- a/docs/snippets/vue/list-story-with-sub-components.3.js.mdx
+++ b/docs/snippets/vue/list-story-with-sub-components.3.js.mdx
@@ -19,7 +19,7 @@ export const Empty = (args) => ({
setup() {
//👇 The args will now be passed down to the template
return { args };
- }
+ },
template: '
',
});
@@ -28,7 +28,7 @@ export const OneItem = (args) => ({
setup() {
//👇 The args will now be passed down to the template
return { args };
- }
+ },
template: '
',
});
-```
\ No newline at end of file
+```