This commit is contained in:
liangping 2025-01-11 08:00:33 +08:00
commit 257a5ab596

View File

@ -16,7 +16,7 @@ const kind = ref('price');
const series = computed(() => {
return [
{
name: 'Price',
name: kind.value === 'price' ? 'Price' : 'Volume',
data:
kind.value === 'price'
? store.marketData.prices.map((item: any) => item[1])