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>
|
|
|
|
|
|
2022-11-29 22:03:40 +08:00
|
|
|
|
<script setup lang="ts" name="layoutFooter">
|
|
|
|
|
// 此处需有内容(注释也得),否则缓存将失败
|
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>
|