mirror of
https://gitee.com/lab1024/smart-admin.git
synced 2025-11-14 22:53:47 +08:00
v2.0
This commit is contained in:
@@ -0,0 +1,34 @@
|
||||
<!--
|
||||
* 底部:版权、公司等信息
|
||||
*
|
||||
* @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>
|
||||
Reference in New Issue
Block a user