mirror of
https://github.com/1Panel-dev/MaxKB.git
synced 2025-12-26 01:33:05 +00:00
21 lines
477 B
Vue
21 lines
477 B
Vue
<template>
|
|
<div class="main-layout h-full flex">
|
|
<div class="sidebar-container"><Sidebar /></div>
|
|
<div class="view-container">
|
|
<AppMain />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script setup lang="ts">
|
|
import { Sidebar, AppMain } from '../components'
|
|
</script>
|
|
<style lang="scss">
|
|
.sidebar-container {
|
|
transition: width 0.28s;
|
|
width: var(--sidebar-width);
|
|
background-color: var(--sidebar-bg-color);
|
|
border-right: 1px solid var(--el-border-color);
|
|
}
|
|
</style>
|