mirror of
https://github.com/soybeanjs/soybean-admin.git
synced 2025-10-21 17:13:41 +08:00
15 lines
415 B
Vue
15 lines
415 B
Vue
<template>
|
|
<n-scrollbar ref="scrollbar" class="h-full" :content-style="scrollbarContentStyle">
|
|
<global-content :show-padding="false" />
|
|
</n-scrollbar>
|
|
</template>
|
|
|
|
<script lang="ts" setup>
|
|
import { NScrollbar } from 'naive-ui';
|
|
import { useLayoutConfig } from '@/composables';
|
|
import { GlobalContent } from '../common';
|
|
|
|
const { scrollbarContentStyle } = useLayoutConfig();
|
|
</script>
|
|
<style scoped></style>
|