mirror of
https://github.com/certd/certd.git
synced 2026-05-15 20:47:31 +08:00
39 lines
811 B
Vue
39 lines
811 B
Vue
<script lang="ts" setup>
|
|
interface Props {
|
|
companyName: string;
|
|
companySiteLink?: string;
|
|
date: string;
|
|
icp?: string;
|
|
icpLink?: string;
|
|
}
|
|
|
|
defineOptions({
|
|
name: "Copyright",
|
|
});
|
|
|
|
withDefaults(defineProps<Props>(), {
|
|
companyName: "Vben Admin",
|
|
companySiteLink: "",
|
|
date: "2024",
|
|
icp: "",
|
|
icpLink: "",
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<div class="text-md flex-center">
|
|
<!-- ICP Link -->
|
|
<a v-if="icp" :href="icpLink || 'javascript:void(0)'" class="hover:text-primary-hover mx-1" target="_blank">
|
|
{{ icp }}
|
|
</a>
|
|
|
|
<!-- Copyright Text -->
|
|
Copyright © {{ date }}
|
|
|
|
<!-- Company Link -->
|
|
<a v-if="companyName" :href="companySiteLink || 'javascript:void(0)'" class="hover:text-primary-hover mx-1" target="_blank">
|
|
{{ companyName }}
|
|
</a>
|
|
</div>
|
|
</template>
|