初始化项目
This commit is contained in:
41
src/view/layout/bottomInfo/bottomInfo.vue
Normal file
41
src/view/layout/bottomInfo/bottomInfo.vue
Normal file
@@ -0,0 +1,41 @@
|
||||
<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>
|
||||
</span>
|
||||
<el-divider direction="vertical" />
|
||||
<span>Copyright</span>
|
||||
<span>
|
||||
<a href="https://github.com/flipped-aurora">flipped-aurora团队</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>
|
Reference in New Issue
Block a user