22 lines
391 B
Vue
22 lines
391 B
Vue
<template>
|
|
<split-pane class="splitpane">
|
|
<template v-slot:top>
|
|
<chart/>
|
|
</template>
|
|
<template v-slot:bottom>
|
|
<router-view/>
|
|
</template>
|
|
</split-pane>
|
|
</template>
|
|
|
|
<script setup>
|
|
import SplitPane from "@/components/SplitPane.vue";
|
|
import Chart from "@/components/chart/Chart.vue";
|
|
</script>
|
|
|
|
<style scoped lang="scss">
|
|
.splitpane {
|
|
height: 100%;
|
|
}
|
|
</style>
|