You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
406 B
Vue
20 lines
406 B
Vue
<script setup lang='ts'>
|
|
import { NLayout, NLayoutContent } from 'naive-ui'
|
|
import Sider from './sider/index.vue'
|
|
</script>
|
|
|
|
<template>
|
|
<div class="h-full overflow-hidden border rounded-md shadow-md min-w-[640px]">
|
|
<NLayout class="h-full" has-sider>
|
|
<Sider />
|
|
<NLayoutContent class="h-full">
|
|
<slot />
|
|
</NLayoutContent>
|
|
</NLayout>
|
|
</div>
|
|
</template>
|
|
|
|
<style>
|
|
|
|
</style>
|