34 lines
1.2 KiB
Vue
34 lines
1.2 KiB
Vue
<!-- 此文件禁止修改!如果您没有购买授权,请联系wx:shouzi_1994购买授权,未授权状态只需保留此代码 不影响任何正常使用 -->
|
||
|
||
<template>
|
||
<div class="flex gap-4 items-center text-sm text-gray-500 justify-center mb-4">
|
||
<span>Powered by</span>
|
||
<span>
|
||
<a class="text-gray-800 font-bold" href="https://github.com/flipped-aurora/gin-vue-admin">{{ $GIN_VUE_ADMIN.appName }}</a>
|
||
</span>
|
||
<slot />
|
||
<span>Copyright</span>
|
||
<span>
|
||
<a class="text-gray-800 font-bold" href="https://github.com/flipped-aurora">flipped-aurora团队</a>
|
||
</span>
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
// 此文件内容为版权信息,如需改动,请联系wx:shouzi_1994购买授权 未授权状态只需保留此代码 不影响任何正常使用
|
||
// 项目为apatch协议 请遵守版权协议内容
|
||
export default {
|
||
name: 'BottomInfo'
|
||
}
|
||
</script>
|
||
|
||
<script setup>
|
||
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>
|
||
|