copyright.vue 864 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748
  1. <script lang="ts" setup>
  2. interface Props {
  3. companyName: string;
  4. companySiteLink?: string;
  5. date: string;
  6. icp?: string;
  7. icpLink?: string;
  8. }
  9. defineOptions({
  10. name: 'Copyright',
  11. });
  12. withDefaults(defineProps<Props>(), {
  13. companyName: 'Vben Admin',
  14. companySiteLink: '',
  15. date: '2024',
  16. icp: '',
  17. icpLink: '',
  18. });
  19. </script>
  20. <template>
  21. <div class="text-md flex-center">
  22. <!-- ICP Link -->
  23. <a
  24. v-if="icp"
  25. :href="icpLink || 'javascript:void(0)'"
  26. class="hover:text-primary-hover"
  27. target="_blank"
  28. >
  29. {{ icp }}
  30. </a>
  31. <!-- Copyright Text -->
  32. Copyright © {{ date }}
  33. <!-- Company Link -->
  34. <a
  35. v-if="companyName"
  36. :href="companySiteLink || 'javascript:void(0)'"
  37. class="hover:text-primary-hover mx-1"
  38. target="_blank"
  39. >
  40. {{ companyName }}
  41. </a>
  42. </div>
  43. </template>