Files
dolphin-frontend/src/views/home/modules/creativity-banner.vue
2024-01-26 01:51:06 +08:00

18 lines
399 B
Vue

<script setup lang="ts">
import { $t } from '@/locales';
defineOptions({
name: 'CreativityBanner'
});
</script>
<template>
<NCard :title="$t('page.home.creativity')" :bordered="false" size="small" class="card-wrapper h-full">
<div class="flex-center h-full">
<IconLocalBanner class="text-400px sm:text-320px text-primary" />
</div>
</NCard>
</template>
<style scoped></style>