|
@@ -4,19 +4,17 @@
|
|
|
<a-button type="link" size="small">更多</a-button>
|
|
|
</template>
|
|
|
|
|
|
- <template v-for="item in items" :key="item">
|
|
|
- <CardGrid class="!md:w-1/3 !w-full">
|
|
|
- <span class="flex">
|
|
|
- <Icon :icon="item.icon" :color="item.color" size="30" />
|
|
|
- <span class="text-lg ml-4">{{ item.title }}</span>
|
|
|
- </span>
|
|
|
- <div class="flex mt-2 h-10 text-secondary">{{ item.desc }}</div>
|
|
|
- <div class="flex justify-between text-secondary">
|
|
|
- <span>{{ item.group }}</span>
|
|
|
- <span>{{ item.date }}</span>
|
|
|
- </div>
|
|
|
- </CardGrid>
|
|
|
- </template>
|
|
|
+ <CardGrid v-for="item in items" :key="item" class="!md:w-1/3 !w-full">
|
|
|
+ <span class="flex">
|
|
|
+ <Icon :icon="item.icon" :color="item.color" size="30" />
|
|
|
+ <span class="text-lg ml-4">{{ item.title }}</span>
|
|
|
+ </span>
|
|
|
+ <div class="flex mt-2 h-10 text-secondary">{{ item.desc }}</div>
|
|
|
+ <div class="flex justify-between text-secondary">
|
|
|
+ <span>{{ item.group }}</span>
|
|
|
+ <span>{{ item.date }}</span>
|
|
|
+ </div>
|
|
|
+ </CardGrid>
|
|
|
</Card>
|
|
|
</template>
|
|
|
<script lang="ts">
|