This repository has been archived on 2024-04-04. You can view files and clone it, but cannot push or open issues or pull requests.
tailwindui/vue/components/application-ui/layout/list-containers/separate_cards.vue
2024-01-24 19:02:44 +08:00

14 lines
288 B
Vue

<template>
<ul role="list" class="space-y-3">
<li v-for="item in items" :key="item.id" class="overflow-hidden rounded-md bg-white px-6 py-4 shadow">
<!-- Your content -->
</li>
</ul>
</template>
<script setup>
const items = [
{ id: 1 },
// More items...
]
</script>