add taxes

This commit is contained in:
2023-10-02 09:52:11 +02:00
parent 0026cba23d
commit 2b513a91b0
8 changed files with 54 additions and 7 deletions

View File

@@ -1,6 +1,6 @@
<script setup lang="ts">
import { MarketType, MarketTypePrice, getHistory, getMarketType, getMarketTypes, jitaId, useApraisalStore } from "@/market";
import { ScanResult, ScanResultTable, useMarkeyScanStore } from '@/market/scan';
import { ScanResult, ScanResultTable, useMarketScanStore } from '@/market/scan';
import { BuyModal } from '@/market/track';
import { ref, watch } from 'vue';
@@ -10,7 +10,7 @@ const buyModal = ref<typeof BuyModal>();
const item = ref("");
const apraisalStore = useApraisalStore();
const markeyScanStore = useMarkeyScanStore();
const markeyScanStore = useMarketScanStore();
const items = ref<ScanResult[]>([]);
const addOrRelaod = async (type: MarketType) => {
const typeID = type.id;