diff --git a/.storybook/main.mjs b/.storybook/main.mjs index 2c11a109e7..1988f934b3 100644 --- a/.storybook/main.mjs +++ b/.storybook/main.mjs @@ -30,7 +30,7 @@ const config = { }, docs: { - autodocs: true + // autodocs: true } }; diff --git a/src/components/card/Card.stories.js b/src/components/card/Card.stories.js index 0c27915894..1985225eae 100644 --- a/src/components/card/Card.stories.js +++ b/src/components/card/Card.stories.js @@ -18,6 +18,7 @@ export default { }, title: 'Components/Card', component: UidsCard, + tags: ['autodocs'], argTypes: { // Props headline_style: { @@ -181,7 +182,7 @@ export default { // More on component templates: https://storybook.js.org/docs/vue/writing-stories/introduction#using-args const Template = (args) => ({ // Components used in your story `template` are defined in the `components` object - components: { UidsCard }, + component: { UidsCard }, // The story's `args` need to be mapped into the template through the `setup()` method setup() { return { args }