28 lines
518 B
Vue
28 lines
518 B
Vue
<template>
|
|
<div class="go-footer">
|
|
<slot>
|
|
<n-text depth="2">
|
|
<n-a>{{ $t('global.doc_addr') }}: </n-a>
|
|
<n-a italic :href="docPath">
|
|
{{docPath}}
|
|
</n-a>
|
|
</n-text>
|
|
</slot>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { docPath } from '@/settings/pathConst'
|
|
</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>
|