1
0
2024-06-17 09:35:09 +00:00

11 lines
185 B
Vue

<script lang="ts" setup>
import Card from './Card.vue'
</script>
<template>
<Story :layout="{ type: 'grid', width: '200px' }">
<Card>
Card content
</Card>
</Story>
</template>