You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
399 B
19 lines
399 B
|
4 months ago
|
<script lang="ts" setup>
|
||
|
|
import { Card, CardGrid } from 'ant-design-vue'
|
||
|
|
import { navItems } from './data'
|
||
|
|
import { Icon } from '@/components/Icon'
|
||
|
|
|
||
|
|
const props = defineProps({
|
||
|
|
data: {
|
||
|
|
type: Object,
|
||
|
|
default: () => {},
|
||
|
|
},
|
||
|
|
})
|
||
|
|
</script>
|
||
|
|
|
||
|
|
<template>
|
||
|
|
<Card class="enter-y !my-1" :title="props.data.Header">
|
||
|
|
<img class="mx-auto h-50 w-full" :src="props.data.path">
|
||
|
|
</Card>
|
||
|
|
</template>
|