2019-06-03 03:31:38 +00:00
|
|
|
<template>
|
2020-03-23 00:43:49 +00:00
|
|
|
<div
|
|
|
|
class="container"
|
|
|
|
:class="theme"
|
|
|
|
>
|
2019-06-03 03:31:38 +00:00
|
|
|
<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>
|
2020-03-23 00:43:49 +00:00
|
|
|
import { mapState } from 'vuex';
|
|
|
|
|
2019-06-03 03:31:38 +00:00
|
|
|
import Header from '../header/header.vue';
|
|
|
|
|
2020-03-23 00:43:49 +00:00
|
|
|
function theme(state) {
|
|
|
|
return state.ui.theme;
|
|
|
|
}
|
|
|
|
|
2019-06-03 03:31:38 +00:00
|
|
|
export default {
|
|
|
|
components: {
|
|
|
|
Header,
|
|
|
|
},
|
2020-03-23 00:43:49 +00:00
|
|
|
computed: {
|
|
|
|
...mapState({
|
|
|
|
theme,
|
|
|
|
}),
|
|
|
|
},
|
2019-06-03 03:31:38 +00:00
|
|
|
};
|
|
|
|
</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 {
|
2020-03-23 00:43:49 +00:00
|
|
|
background: var(--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>
|