mirror of
https://github.com/zclzone/vue-naive-admin.git
synced 2025-04-30 22:29:01 +08:00
39 lines
885 B
Vue
39 lines
885 B
Vue
<!--------------------------------
|
|
- @Author: Ronnie Zhang
|
|
- @LastEditor: Ronnie Zhang
|
|
- @LastEditTime: 2023/12/13 20:54:55
|
|
- @Email: zclzone@outlook.com
|
|
- Copyright © 2023 Ronnie Zhang(大脸怪) | https://isme.top
|
|
--------------------------------->
|
|
|
|
<template>
|
|
<div class="wh-full flex">
|
|
<aside
|
|
class="flex-col flex-shrink-0 transition-width-300"
|
|
:class="appStore.collapsed ? 'w-64' : 'w-220'"
|
|
border-r="1px solid light_border dark:dark_border"
|
|
>
|
|
<SideBar />
|
|
</aside>
|
|
|
|
<article class="w-0 flex-col flex-1">
|
|
<AppHeader class="h-60 flex-shrink-0" />
|
|
<slot />
|
|
</article>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SideBar from './sidebar/index.vue'
|
|
import AppHeader from './header/index.vue'
|
|
import { useAppStore } from '@/store'
|
|
|
|
const appStore = useAppStore()
|
|
</script>
|
|
|
|
<style>
|
|
.collapsed {
|
|
width: 64px;
|
|
}
|
|
</style>
|