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.
28 lines
584 B
Vue
28 lines
584 B
Vue
2 years ago
|
<script setup lang='ts'>
|
||
|
import { NLayout, NLayoutContent, NLayoutSider } from 'naive-ui'
|
||
|
</script>
|
||
|
|
||
|
<template>
|
||
|
<div class="h-full overflow-hidden border rounded-md shadow-md">
|
||
|
<NLayout class="h-full" has-sider>
|
||
|
<NLayoutSider
|
||
|
collapse-mode="width"
|
||
|
:collapsed-width="120"
|
||
|
:width="240"
|
||
|
show-trigger="arrow-circle"
|
||
|
class="p-4"
|
||
|
bordered
|
||
|
>
|
||
|
<span>Sider</span>
|
||
|
</NLayoutSider>
|
||
|
<NLayoutContent class="h-full">
|
||
|
<slot />
|
||
|
</NLayoutContent>
|
||
|
</NLayout>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<style>
|
||
|
|
||
|
</style>
|