
* fix: 修改 layout 中相关 emit 和 重复声明的 theme ,采用最新的vue api * fix:修改 eslintrc 的配置文件,删除大多数无用配置 * fix: 修复 layout 切换手机样式模糊层的 bug * feature: 重构 layout , 添加暗黑模式 , 删除侧边栏颜色 * fix:细节调整,activeColor摘除。 * feature:右侧滚动模式调整 * feature:无用代码剔除 * fix: 修复暗黑模式相关细节 * fix: custome config layout * feature:样式细节调整 * fix: 增加前端样式配置文件 * feature:调整基础配置,增加表格边框 * feature:buttomInfo取消底色,a标签更改为活跃色 * feature:调整阴影颜色和配置同步 * feature:版本调整2.6.3==>2.6.4 --------- Co-authored-by: bypanghu <bypanghu@163.com>
42 lines
1.3 KiB
Vue
42 lines
1.3 KiB
Vue
<!-- 此文件禁止修改!如果您没有购买授权,请联系wx:shouzi_1994购买授权,未授权状态只需保留此代码 不影响任何正常使用 -->
|
||
|
||
<template>
|
||
<div class="flex flex-col md:flex-row gap-2 items-center text-sm text-slate-700 dark:text-slate-500 justify-center py-2">
|
||
<div class="text-center">
|
||
<span class="mr-1">Powered by</span>
|
||
<span>
|
||
<a
|
||
class="font-bold text-active"
|
||
href="https://github.com/flipped-aurora/gin-vue-admin"
|
||
>Gin-Vue-Admin</a>
|
||
</span>
|
||
</div>
|
||
<slot />
|
||
<div class="text-center">
|
||
<span class="mr-1">Copyright</span>
|
||
<span>
|
||
<a
|
||
class="font-bold text-active"
|
||
href="https://github.com/flipped-aurora"
|
||
>flipped-aurora团队</a>
|
||
</span>
|
||
</div>
|
||
</div>
|
||
</template>
|
||
|
||
<script setup>
|
||
// 此文件内容为版权信息,如需改动,请联系wx:shouzi_1994购买授权 未授权状态只需保留此代码 不影响任何正常使用
|
||
// 项目为apatch协议 请遵守版权协议内容
|
||
defineOptions({
|
||
name: 'BottomInfo'
|
||
})
|
||
|
||
console.log(
|
||
`%c powered by %c flipped-aurorae %c`,
|
||
'background:#0081ff; padding: 1px; border-radius: 3px 0 0 3px; color: #fff',
|
||
'background:#354855; padding: 1px 5px; border-radius: 0 3px 3px 0; color: #fff; font-weight: bold;',
|
||
'background:transparent'
|
||
)
|
||
</script>
|
||
|