feat: layouts auth/default e componentes AppSidebar/AppTopbar

This commit is contained in:
Junior
2026-03-14 10:36:11 -03:00
parent a78b9eb314
commit 6554c34a13
5 changed files with 264 additions and 76 deletions

View File

@@ -0,0 +1,23 @@
<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>