24 lines
337 B
Vue
24 lines
337 B
Vue
<template>
|
|
<div class="app-layout">
|
|
<AppSidebar />
|
|
<div class="app-main">
|
|
<slot />
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.app-layout {
|
|
display: flex;
|
|
min-height: 100vh;
|
|
background: #f1f5f9;
|
|
}
|
|
.app-main {
|
|
flex: 1;
|
|
display: flex;
|
|
flex-direction: column;
|
|
overflow: hidden;
|
|
min-width: 0;
|
|
}
|
|
</style>
|