20 lines
522 B
Vue
20 lines
522 B
Vue
<script setup>
|
|
import customHeader from '@/components/customHeader/index.vue'
|
|
import customFooter from '@/components/customFooter/index.vue'
|
|
import { NScrollbar } from 'naive-ui'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="flex flex-col h-screen">
|
|
<customHeader></customHeader>
|
|
<n-scrollbar class="bg-[url('@/assets/image/bg-pc.png')] bg-cover bg-center flex-1">
|
|
<div>
|
|
<router-view />
|
|
</div>
|
|
</n-scrollbar>
|
|
<customFooter></customFooter>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|