22 lines
511 B
Vue
22 lines
511 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-100svh">
|
|
<customHeader />
|
|
<n-scrollbar
|
|
class="bg-[url('@/assets/image/bg-mobile.png')] bg-cover bg-center flex-1"
|
|
>
|
|
<div>
|
|
<router-view />
|
|
</div>
|
|
</n-scrollbar>
|
|
<customFooter />
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped lang="scss"></style>
|