Files
JM-admin/src/view/layout/bottomInfo/bottomInfo.vue
2023-03-27 18:35:31 +08:00

44 lines
1.0 KiB
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.

<template>
<div class="bottom-info">
<div>
<span>Powered by</span>
<span>
<!-- <a href="https://github.com/flipped-aurora/gin-vue-admin">{{ $GIN_VUE_ADMIN.appName }}</a>-->
<a href="javascript:void">{{ $GIN_VUE_ADMIN.appName }}</a>
</span>
<el-divider direction="vertical" />
<span>Copyright</span>
<span>
<!-- <a href="https://github.com/flipped-aurora">flipped-aurora团队</a>-->
<a href="javascript:void">谷翁科技团队</a>
</span>
</div>
</div>
</template>
<script>
// 此文件内容为版权信息如需改动请联系wx:shouzi_1994购买授权 未授权状态只需保留此代码 不影响任何正常使用
// 项目为apatch协议 请遵守版权协议内容
export default {
name: 'BottomInfo'
}
</script>
<style lang="scss">
.bottom-info {
color: #888;
height: 30px;
line-height: 12px;
a {
color: #888;
}
div {
display: flex;
justify-content: center;
span{
margin: 0 3px;
}
}
}
</style>