2023-02-08 21:35:42 +00:00
|
|
|
<template>
|
|
|
|
<div class="container">
|
|
|
|
<div class="primary">
|
|
|
|
<component :is="primary" />
|
|
|
|
</div>
|
|
|
|
<div class="timeline">
|
|
|
|
<Timeline />
|
|
|
|
</div>
|
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts">
|
|
|
|
import { defineComponent } from "vue";
|
|
|
|
import Timeline from "./Timeline.vue";
|
2023-02-09 08:39:02 +00:00
|
|
|
const MapSplitMatter = () => import("./top-matter/MapSplitMatter.vue");
|
2023-02-08 21:35:42 +00:00
|
|
|
|
|
|
|
export default defineComponent({
|
|
|
|
name: "SplitTimeline",
|
|
|
|
|
|
|
|
components: {
|
|
|
|
Timeline,
|
|
|
|
},
|
|
|
|
|
|
|
|
computed: {
|
|
|
|
primary() {
|
|
|
|
switch (this.$route.name) {
|
2023-02-08 22:13:13 +00:00
|
|
|
case "map":
|
|
|
|
return MapSplitMatter;
|
2023-02-08 21:35:42 +00:00
|
|
|
default:
|
|
|
|
return "None";
|
|
|
|
}
|
|
|
|
},
|
|
|
|
},
|
|
|
|
});
|
|
|
|
</script>
|
|
|
|
|
|
|
|
<style lang="scss" scoped>
|
|
|
|
.container {
|
|
|
|
width: 100%;
|
|
|
|
height: 100%;
|
|
|
|
display: flex;
|
|
|
|
overflow: hidden;
|
|
|
|
}
|
|
|
|
.primary {
|
|
|
|
width: 60%;
|
|
|
|
height: 100%;
|
|
|
|
}
|
|
|
|
.timeline {
|
|
|
|
flex: 1;
|
|
|
|
height: 100%;
|
|
|
|
padding-left: 8px;
|
|
|
|
}
|
|
|
|
|
|
|
|
@media (max-width: 768px) {
|
|
|
|
.container {
|
|
|
|
flex-direction: column;
|
|
|
|
}
|
|
|
|
.primary {
|
|
|
|
width: 100%;
|
|
|
|
height: 40%;
|
|
|
|
}
|
|
|
|
.timeline {
|
|
|
|
width: 100%;
|
|
|
|
height: 60%;
|
|
|
|
padding-left: 0;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
</style>
|