admin base

This commit is contained in:
xiaomlove
2021-04-22 03:24:59 +08:00
parent b822536283
commit 92f22c9560
26 changed files with 891 additions and 75 deletions
+25
View File
@@ -0,0 +1,25 @@
<template>
<div class="footer">
<div class="left">Designed By Xiaomlove</div>
<div class="right">
<a target="_blank" href="https://nexusphp.org/">nexusphp.org</a>
</div>
</div>
</template>
<script>
export default {
name: 'Footer'
}
</script>
<style scoped>
.footer {
height: 50px;
border-top: 1px solid #e9e9e9;
display: flex;
justify-content: space-between;
align-items: center;
padding: 0 20px;
}
</style>