feat(@vben/web-antd): perf: home page analysis card adjusted to grid layout (#4219)

Co-authored-by: DreamyTZK <i@tzki.cn>
pull/48/MERGE
Hannah Jensen 2024-08-23 12:59:59 +08:00 committed by GitHub
parent d5655f02e3
commit c27b97f933
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
1 changed files with 3 additions and 7 deletions

View File

@ -25,13 +25,9 @@ withDefaults(defineProps<Props>(), {
</script>
<template>
<div class="md:flex">
<template v-for="(item, index) in items" :key="item.title">
<Card
:class="{ 'md:mr-4': index + 1 < 4 }"
:title="item.title"
class="mt-5 w-full md:mt-0 md:w-1/4"
>
<div class="grid grid-cols-1 gap-4 md:grid-cols-2 lg:grid-cols-4">
<template v-for="item in items" :key="item.title">
<Card :title="item.title" class="w-full">
<CardHeader>
<CardTitle class="text-xl">{{ item.title }}</CardTitle>
</CardHeader>