Skip to content

Commit

Permalink
📝 updated muccard-container #63
Browse files Browse the repository at this point in the history
  • Loading branch information
langehm committed May 8, 2024
1 parent 937803c commit 0e48fb3
Showing 1 changed file with 17 additions and 14 deletions.
31 changes: 17 additions & 14 deletions src/components/Card/MucCardContainer.stories.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,22 +22,25 @@ export default {
},
};

export const Template = () => ({
components: { MucCardContainer, MucCard },
template: `
<MucCardContainer>
<MucCard
export const Template = {
parameters: {
slots: {
default: {
components: { MucCard },
template: `
<MucCard
v-bind="$props"
title="Lorem Ipsum"
tagline="Dolor"
v-for="index in 5"
:key="index"
>
<template #content>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
dolore magna aliquyam erat, sed diam voluptua.
</template>
</MucCard>
</MucCardContainer>
`,
});
>
<template #content>
Lorem ipsum dolor sit amet, consetetur sadipscing elitr, sed diam nonumy eirmod tempor invidunt ut labore et
dolore magna aliquyam erat, sed diam voluptua.
</template>
</MucCard>`,
},
},
},
};

0 comments on commit 0e48fb3

Please sign in to comment.