2019-06-03 03:31:38 +00:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<Header />
|
|
|
|
|
|
|
|
<div class="content">
|
2019-12-15 04:42:51 +00:00
|
|
|
<!-- key forces rerender when new and old path use same component -->
|
|
|
|
<router-view :key="$route.fullPath" />
|
2019-06-03 03:31:38 +00:00
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script>
|
|
|
|
import Header from '../header/header.vue';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Header,
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|
|
|
|
|
2019-10-28 01:54:37 +00:00
|
|
|
<style lang="scss">
|
2019-11-14 00:18:19 +00:00
|
|
|
@import 'theme';
|
|
|
|
|
2019-09-24 23:38:06 +00:00
|
|
|
.container {
|
2019-11-14 00:18:19 +00:00
|
|
|
background: $background-dim;
|
2019-09-24 23:38:06 +00:00
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
|
|
|
|
.content {
|
2019-10-28 01:54:37 +00:00
|
|
|
display: flex;
|
|
|
|
flex-direction: column;
|
2019-09-24 23:38:06 +00:00
|
|
|
flex-grow: 1;
|
2019-11-14 00:18:19 +00:00
|
|
|
overflow-y: auto;
|
2019-09-24 23:38:06 +00:00
|
|
|
}
|
|
|
|
|
2019-06-03 03:31:38 +00:00
|
|
|
.content-inner {
|
2019-10-28 01:54:37 +00:00
|
|
|
flex-grow: 1;
|
2019-06-03 03:31:38 +00:00
|
|
|
padding: 1rem;
|
2019-10-28 01:54:37 +00:00
|
|
|
overflow-y: auto;
|
2019-06-03 03:31:38 +00:00
|
|
|
}
|
|
|
|
</style>
|