Files
habitica/website/client/src/components/ui/pageLayout.vue
T
2019-10-12 17:05:15 +02:00

32 lines
477 B
Vue

<template>
<div class="row">
<div
v-if="showSidebar"
class="standard-sidebar d-none d-sm-block"
>
<slot name="sidebar"></slot>
</div>
<div class="standard-page">
<slot name="page"></slot>
</div>
</div>
</template>
<script>
export default {
props: {
showSidebar: {
type: Boolean,
default: true,
},
},
};
</script>
<style scoped lang="scss">
.standard-page {
position: relative;
}
</style>