22 lines
526 B
Vue
22 lines
526 B
Vue
|
<script setup>
|
||
|
import { NCarousel, NDivider, NMarquee, NPopselect } from 'naive-ui'
|
||
|
import { onUnmounted, ref, watch, onMounted, computed } from 'vue'
|
||
|
|
||
|
import customHeader from '@/components/customHeader/index.vue'
|
||
|
import customFooter from '@/components/customFooter/index.vue'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<customHeader></customHeader>
|
||
|
<div style="margin: 80px 0;">
|
||
|
<router-view />
|
||
|
</div>
|
||
|
<customFooter></customFooter>
|
||
|
</template>
|
||
|
|
||
|
<style scoped lang="scss">
|
||
|
main {
|
||
|
padding: var(--header-height, 80px) 0 0;
|
||
|
}
|
||
|
</style>
|