tdesign-vue-next-starter/src/layouts/components/Footer.vue

18 lines
385 B
Vue
Raw Normal View History

<template>
<div :class="prefix + '-footer'">Copyright @ 2021-{{ new Date().getFullYear() }} Tencent. All Rights Reserved</div>
</template>
2022-02-16 19:56:36 +08:00
<script setup lang="ts">
import { prefix } from '@/config/global';
</script>
<style lang="less" scoped>
@import '@/style/variables';
.@{prefix}-footer {
color: @text-color-placeholder;
line-height: 20px;
text-align: center;
}
</style>