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