2023-09-05 18:03:30 +08:00
|
|
|
<script lang="ts" setup>
|
|
|
|
const VITE_APP_TITLE = import.meta.env.VITE_APP_TITLE
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
|
|
|
<footer class="layout-footer">MIT © 2021-PRESENT {{ VITE_APP_TITLE }}</footer>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.layout-footer {
|
|
|
|
width: 100%;
|
|
|
|
min-height: 50px;
|
|
|
|
display: flex;
|
|
|
|
align-items: center;
|
|
|
|
justify-content: center;
|
2024-03-28 21:34:24 +08:00
|
|
|
color: var(--el-text-color-placeholder);
|
2023-09-05 18:03:30 +08:00
|
|
|
}
|
|
|
|
</style>
|