This commit is contained in:
zyj
2025-10-14 17:56:28 +08:00
commit 81c18c94e3
74 changed files with 12668 additions and 0 deletions

View File

@@ -0,0 +1,26 @@
<template>
<div>
<a-layout style="min-height: 100vh">
<SiderMenu />
<a-layout>
<Header></Header>
<a-layout-content style="margin: 0 16px">
<div style="min-height: calc(100vh - 155px)">
<slot />
</div>
</a-layout-content>
<a-layout-footer style="text-align: center">
<!-- Ant Design ©2018 Created by Ant UED -->
</a-layout-footer>
</a-layout>
</a-layout>
</div>
</template>
<script setup lang="ts">
onMounted(() => {
});
</script>