16 lines
305 B
Vue
16 lines
305 B
Vue
<template>
|
|
<div
|
|
id="sidebar"
|
|
style="
|
|
padding: 20px;
|
|
flex-shrink: 0;
|
|
display: flex;
|
|
flex-direction: column;
|
|
line-height: 1.8em;
|
|
border-right: 2px solid #eee;
|
|
"
|
|
>
|
|
<slot />
|
|
</div>
|
|
</template>
|