2021-12-12 01:04:13 +08:00
|
|
|
<template>
|
2021-12-22 12:07:29 +08:00
|
|
|
<div :class="prefix + '-footer'">Copyright @ 2021-{{ new Date().getFullYear() }} Tencent. All Rights Reserved</div>
|
2021-12-12 01:04:13 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from 'vue';
|
2021-12-22 12:07:29 +08:00
|
|
|
import { prefix } from '@/config/global';
|
2021-12-12 01:04:13 +08:00
|
|
|
|
|
|
|
export default defineComponent({
|
2021-12-22 12:07:29 +08:00
|
|
|
name: `${prefix}-footer`,
|
2021-12-12 01:04:13 +08:00
|
|
|
setup() {
|
|
|
|
return {
|
2021-12-22 12:07:29 +08:00
|
|
|
prefix,
|
2021-12-12 01:04:13 +08:00
|
|
|
};
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="less" scoped>
|
|
|
|
@import '@/style/variables';
|
|
|
|
|
|
|
|
.@{prefix}-footer {
|
|
|
|
color: @text-color-placeholder;
|
|
|
|
line-height: 20px;
|
|
|
|
text-align: center;
|
|
|
|
}
|
|
|
|
</style>
|