2021-01-06 18:41:05 +08:00
|
|
|
|
<template>
|
2022-11-16 15:34:23 +08:00
|
|
|
|
<div class="layout-footer pb15">
|
2021-03-15 12:44:58 +08:00
|
|
|
|
<div class="layout-footer-warp">
|
|
|
|
|
<div>vue-next-admin,Made by lyt with ❤️</div>
|
2022-02-21 23:52:59 +08:00
|
|
|
|
<div class="mt5">深圳市 xxx 公司版权所有</div>
|
2021-03-15 12:44:58 +08:00
|
|
|
|
</div>
|
|
|
|
|
</div>
|
2021-01-06 18:41:05 +08:00
|
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script lang="ts">
|
2022-11-16 15:34:23 +08:00
|
|
|
|
import { defineComponent } from 'vue';
|
2022-04-18 19:14:38 +08:00
|
|
|
|
|
2022-02-21 23:52:59 +08:00
|
|
|
|
export default defineComponent({
|
2021-03-15 12:44:58 +08:00
|
|
|
|
name: 'layoutFooter',
|
2022-02-21 23:52:59 +08:00
|
|
|
|
});
|
2021-01-06 18:41:05 +08:00
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
|
|
|
|
.layout-footer {
|
2021-03-15 12:44:58 +08:00
|
|
|
|
width: 100%;
|
|
|
|
|
display: flex;
|
|
|
|
|
&-warp {
|
|
|
|
|
margin: auto;
|
2021-09-10 23:24:58 +08:00
|
|
|
|
color: var(--el-text-color-secondary);
|
2021-03-15 12:44:58 +08:00
|
|
|
|
text-align: center;
|
2022-11-16 15:34:23 +08:00
|
|
|
|
animation: error-num 0.3s ease;
|
2021-03-15 12:44:58 +08:00
|
|
|
|
}
|
2021-01-06 18:41:05 +08:00
|
|
|
|
}
|
2021-03-15 12:44:58 +08:00
|
|
|
|
</style>
|