major refactor of web store into vue setup style declaration; reactivity debugging; order view has known refresh issues
This commit is contained in:
25
src/components/LadderOrder.vue
Normal file
25
src/components/LadderOrder.vue
Normal 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>
|
||||
Reference in New Issue
Block a user