mirror of
https://github.com/Tencent/tdesign-vue-next-starter.git
synced 2024-12-25 10:06:33 +08:00
18 lines
385 B
Vue
18 lines
385 B
Vue
<template>
|
|
<div :class="prefix + '-footer'">Copyright @ 2021-{{ new Date().getFullYear() }} Tencent. All Rights Reserved</div>
|
|
</template>
|
|
|
|
<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>
|