initial chart checkin

This commit is contained in:
Tim
2024-01-29 01:25:48 -04:00
parent ee021c9590
commit 29fcad1059
23 changed files with 490 additions and 42 deletions

24
src/views/ChartView.vue Normal file
View File

@@ -0,0 +1,24 @@
<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";
import {useShapeStore} from "@/store/store.js";
const ss = useShapeStore()
</script>
<style scoped lang="scss">
.splitpane {
height: 100%;
}
</style>