You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

18 lines
414 B

2 months ago
<template>
<div class="layout-footer">
<div style="margin-top:5px"><span>vue3-admin-template</span> </div>
<div style="margin-top:5px">Copyright © 2023 Daming All rights reserved.</div>
</div>
</template>
<script setup>
// 此处需有内容(注释也得),否则缓存将失败
</script>
<style scoped>
.layout-footer {
color: var(--el-text-color-secondary);
text-align: center;
}
</style>