Files
Code-Create/src/components/main-header.vue

20 lines
401 B
Vue
Raw Normal View History

2026-05-14 14:23:32 +08:00
<template>
<header class="main-header" v-scroll-progress></header>
</template>
<script setup lang="ts">
import { ref, onMounted, onUnmounted } from "vue";
</script>
<style lang="less" scoped>
.main-header {
position: fixed;
width: 100%;
height: 85px;
top: 0;
left: 0;
z-index: 10000;
transition: background-color 0.2s linear;
&.active {
background-color: #0a0a0a;
}
}
</style>