initial chart checkin
This commit is contained in:
17
src/components/chart/ChartOrder.vue
Normal file
17
src/components/chart/ChartOrder.vue
Normal file
@@ -0,0 +1,17 @@
|
||||
<template>
|
||||
<div>
|
||||
<v-expansion-panels class="d-flex">
|
||||
<chart-tranche v-for="s in ss.shapes" :shape="s"/>
|
||||
<!-- <v-expansion-panel v-for="s in ss.shapes" :title="s.type" :text="JSON.stringify(s)"/>-->
|
||||
</v-expansion-panels>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import {useShapeStore} from "@/store/store.js";
|
||||
import ChartTranche from "@/components/chart/ChartTranche.vue";
|
||||
const ss = useShapeStore()
|
||||
</script>
|
||||
|
||||
<style scoped lang="scss">
|
||||
</style>
|
||||
Reference in New Issue
Block a user