WebIndex/components/card/CardTitle.vue

22 lines
443 B
Vue
Raw Normal View History

2024-11-17 11:45:08 +08:00
<script lang="ts" setup>
defineProps<{
title: string
icon: string[]
}>()
</script>
<template>
2025-01-13 01:03:16 +08:00
<div class="my-16 relative">
2025-01-14 14:23:28 +08:00
<h3 class="text-5xl font-bold text-shadow-lg shadow-blue-200 text-blue-400 relative z-10">
2025-01-13 21:51:37 +08:00
{{ title }}
</h3>
<div class="h-12 w-auto text-5xl text-blue-200 absolute left-48 top-0 -translate-y-6">
<font-awesome-icon :icon="icon" />
</div>
2024-11-17 11:45:08 +08:00
</div>
</template>
<style scoped>
2025-01-13 21:51:37 +08:00
</style>