14 lines
258 B
Vue
Raw Normal View History

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