Files
smart-admin/smart-admin-web/javascript-ant-design-vue3/src/layout/components/smart-footer/index.vue
zhuoda f9cc5accde v2.0
2022-11-05 22:40:22 +08:00

35 lines
800 B
Vue
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!--
* 底部版权公司等信息
*
* @Author: 1024创新实验室-主任卓大
* @Date: 2022-09-06 20:29:12
* @Wechat: zhuda1024
* @Email: lab1024@163.com
* @Copyright 1024创新实验室 https://1024lab.net Since 2012
-->
<template>
<div class="version" >
<a target="_blank" href="https://www.1024lab.net">
SmartAdmin V2.x @copyright 河南·洛阳1024创新实验室 Since 2012-{{ 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>