2024-03-31 15:51:00 +08:00
|
|
|
<template>
|
2024-04-02 21:00:21 +08:00
|
|
|
<a-layout-header class="header">Header</a-layout-header>
|
2024-03-31 15:51:00 +08:00
|
|
|
</template>
|
|
|
|
|
|
|
|
|
|
<script setup lang="ts"></script>
|
|
|
|
|
|
2024-04-02 21:00:21 +08:00
|
|
|
<style lang="scss" scoped>
|
|
|
|
|
.header {
|
|
|
|
|
height: 60px;
|
|
|
|
|
box-sizing: border-box;
|
|
|
|
|
border-bottom: $border-1 solid $color-border-1;
|
|
|
|
|
}
|
|
|
|
|
</style>
|