律师系统前端
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.

27 lines
523 B

4 months ago
<!--
* 底部版权公司等信息
-->
<template>
<div class="version">
<a target="_blank" class="smart-copyright">{{ currentYear }}@ 律师公益法律服务活动申报与管理平台 </a>
</div>
</template>
<script setup>
import dayjs from 'dayjs';
const currentYear = dayjs().year();
</script>
<style lang="less" scoped>
.version {
font-size: 14px;
color: rgba(0, 0, 0, 0.45);
a {
color: rgba(0, 0, 0, 0.45);
}
a:hover {
color: @primary-color;
}
}
</style>