Compare commits

...

2 Commits

Author SHA1 Message Date
sundongyu
d369a78759 📃 docs:解决代码冲突 2024-04-01 13:14:03 +08:00
sundongyu
1d2b0338af 🔧 build:安装了Less 2024-04-01 13:10:05 +08:00
2 changed files with 20 additions and 2 deletions

View File

@ -0,0 +1,15 @@
<template>
<div class="footer">Copyright © 1998-2022 Tencent All Rights Reserved.</div>
<div><a href="https://beian.miit.gov.cn/#/Integrated/index">
</a></div>
</template>
<script setup lang="ts"></script>
<style lang="less" scoped>
.footer {
color: var(--td-text-color-placeholder);
line-height: 20px;
text-align: center;
}
</style>

View File

@ -7,13 +7,16 @@
<t-content> <t-content>
<content-center /> <content-center />
</t-content> </t-content>
<t-footer>Footer</t-footer> <t-footer>
<footer-bottom />
</t-footer>
</t-layout> </t-layout>
</div> </div>
</template> </template>
<script setup lang="ts"> <script setup lang="ts">
import hesderTop from "./header/index.vue"; import hesderTop from '@/pages/header/index.vue'
import footerBottom from '@/pages/footer/index.vue'
import contentCenter from "@/pages/content/index.vue"; import contentCenter from "@/pages/content/index.vue";
</script> </script>