捕梦者基础前端框架
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

35 lines
837 B

<!-- 全局页脚 -->
<template>
<div class="ele-text-center" style="padding: 16px 0">
<div>
<a target="_blank" class="ele-text-secondary" href="https://eleadmin.com">
{{ $t('layout.footer.website') }}
</a>
<em></em>
<a
target="_blank"
class="ele-text-secondary"
href="https://eleadmin.com/doc/eleadmin/"
>
{{ $t('layout.footer.document') }}
</a>
<em></em>
<a
target="_blank"
class="ele-text-secondary"
href="https://eleadmin.com/goods/8"
>
{{ $t('layout.footer.authorization') }}
</a>
</div>
<div class="ele-text-secondary" style="margin-top: 8px">
{{ $t('layout.footer.copyright') }}
</div>
</div>
</template>
<script>
export default {
name: 'PageFooter'
};
</script>