26 lines
501 B
Vue
Raw Normal View History

2021-12-17 14:19:55 +08:00
<template>
<div class="go-footer">
<slot>
2021-12-17 14:42:57 +08:00
<n-text depth="2">
<n-a>{{ $t('global.doc_addr') }}: </n-a>
<n-a italic href="http://www.mtruning.club/">
http://www.mtruning.club/
</n-a>
</n-text>
2021-12-17 14:19:55 +08:00
</slot>
</div>
</template>
<script setup lang="ts"></script>
<style lang="scss" scoped>
@include go(footer) {
display: flex;
justify-content: center;
align-items: center;
width: 100%;
padding: 0 40px;
height: $--footer-height;
}
</style>