2025-05-22 06:56:37 +00:00
|
|
|
<script setup>
|
2025-05-22 12:30:26 +00:00
|
|
|
import { NCarousel, NDivider, NMarquee, NPopselect } from 'naive-ui'
|
|
|
|
import { onUnmounted, ref, watch, onMounted, computed } from 'vue'
|
2025-05-22 12:46:09 +00:00
|
|
|
|
|
|
|
import customHeader from '@/components/customHeader/index.vue'
|
|
|
|
import customFooter from '@/components/customFooter/index.vue'
|
2025-05-22 06:56:37 +00:00
|
|
|
</script>
|
|
|
|
|
|
|
|
<template>
|
2025-05-23 00:50:08 +00:00
|
|
|
<header className="header">
|
|
|
|
1920
|
|
|
|
</header>
|
|
|
|
<main ref="main"></main>
|
2025-05-22 06:56:37 +00:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<style scoped lang="scss">
|
2025-05-22 12:30:26 +00:00
|
|
|
main {
|
|
|
|
padding: var(--header-height, 80px) 0 0;
|
|
|
|
}
|
2025-05-22 06:56:37 +00:00
|
|
|
</style>
|