major refactor of web store into vue setup style declaration; reactivity debugging; order view has known refresh issues

This commit is contained in:
Tim Olson
2023-11-27 00:52:17 -04:00
parent 41457b85f5
commit d2db5dc4f7
24 changed files with 545 additions and 364 deletions

View File

@@ -0,0 +1,25 @@
<template>
<order :tranches="buildTranches">
<limit-price :required="true" label=""/>
<limit-price :show-price="false" store-var="limitPrice2" :required="true" label=""/>
</order>
</template>
<script setup>
import {useStore} from "@/store/store";
import LimitPrice from "@/components/LimitPrice.vue";
import Order from "@/components/Order.vue";
const s = useStore()
function buildTranches() {
const ts = []
return ts
}
</script>
<style scoped lang="scss">
@use "src/styles/vars" as *;
</style>