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,34 @@
<template>
<div class="header-outside">
<a-layout-header class="header">
<div class="header-menu">
<div></div>
<div>
</div>
</div>
</a-layout-header>
</div>
</template>
<script lang="ts" setup>
import { DownOutlined } from '@ant-design/icons-vue';
</script>
<style scoped>
.header-menu{
display: flex;
justify-content: space-between;
align-items: center;
}
.header-outside {
position: sticky;
top: 0;
left: 0;
right: 0;
/* z-index: 9999; */
}
</style>