index.vue 452 B

1234567891011121314151617181920212223
  1. <template>
  2. <div class="go-footer">
  3. <slot>
  4. <n-a>{{ $t('global.doc_addr') }}: </n-a>
  5. <n-a italic href="http://www.mtruning.club/">
  6. http://www.mtruning.club/
  7. </n-a>
  8. </slot>
  9. </div>
  10. </template>
  11. <script setup lang="ts"></script>
  12. <style lang="scss" scoped>
  13. @include go(footer) {
  14. display: flex;
  15. justify-content: center;
  16. align-items: center;
  17. width: 100%;
  18. padding: 0 40px;
  19. height: $--footer-height;
  20. }
  21. </style>