forked from extern/dockge
43 lines
1.0 KiB
Vue
43 lines
1.0 KiB
Vue
<template>
|
|
<div class="container-fluid">
|
|
<div class="row">
|
|
<div v-if="!$root.isMobile" class="col-12 col-md-4 col-xl-3">
|
|
<div>
|
|
<router-link to="/compose" class="btn btn-primary mb-3"><font-awesome-icon icon="plus" /> {{ $t("compose") }}</router-link>
|
|
</div>
|
|
<StackList :scrollbar="true" />
|
|
</div>
|
|
|
|
<div ref="container" class="col-12 col-md-8 col-xl-9 mb-3">
|
|
<!-- Add :key to disable vue router re-use the same component -->
|
|
<router-view :key="$route.fullPath" :calculatedHeight="height" />
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
|
|
import StackList from "../components/StackList.vue";
|
|
|
|
export default {
|
|
components: {
|
|
StackList,
|
|
},
|
|
data() {
|
|
return {
|
|
height: 0
|
|
};
|
|
},
|
|
mounted() {
|
|
this.height = this.$refs.container.offsetHeight;
|
|
},
|
|
};
|
|
</script>
|
|
|
|
<style lang="scss" scoped>
|
|
.container-fluid {
|
|
width: 98%;
|
|
}
|
|
</style>
|