FooterLayout.vue 242 B

123456789101112131415
  1. <script setup lang="ts">
  2. const thisYear = computed(() => new Date().getFullYear())
  3. </script>
  4. <template>
  5. <div class="footer center">
  6. Copyright © 2020 - {{ thisYear }} Nginx UI
  7. </div>
  8. </template>
  9. <style scoped>
  10. .footer {
  11. }
  12. </style>