initial chart checkin
This commit is contained in:
24
src/views/ChartView.vue
Normal file
24
src/views/ChartView.vue
Normal 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>
|
||||
Reference in New Issue
Block a user