Files
gemory/src/market/tax/TaxInput.vue
T

24 lines
556 B
Vue

<script setup lang="ts">
import {useMarketTaxStore} from "./tax";
const marketTaxStore = useMarketTaxStore();
</script>
<template>
<div class="end">
<span>Broker Fee: </span>
<input type="number" min="1" max="3" step="0.01" v-model="marketTaxStore.brokerFee" />
</div>
<div class="end">
<span>SCC: </span>
<input type="number" min="3.375" max="8" step="0.01" v-model="marketTaxStore.scc" >
</div>
</template>
<style scoped>
@reference "@/style.css";
div.end {
@apply justify-self-end ms-2;
}
</style>