What are some ways to implement real-time list processing in vue3 without delay?

46 Views Asked by At

What are some ways to implement real-time list processing in vue3 without delay?

Is there a simple way to show the order book of the cryptocurrency exchange neatly and coolly without interruption or delay?

Output is being made using a normal v-for code with vue3. Orderbook data is updated several times per second, but there is a delay in updating the screen.

<div 
     v-for="item in askList"
     :key="`tick_${item}`">

     <div class="divTableRow"
          v-if="showAskEnable"> 
          <div class="divTableCell ask-light">
             <span>{{ formatTickData(item.tick) }} </span>   
          </div>
     </div>
</div>

If you recommend other development frameworks other than vue3, or if you have any reference materials, please share them without hesitation.

Created initially using q-table tag in quasar. Later, the same phenomenon as above was found, so I proceeded with the normal table tag and finally wrote it using the div tag.

0

There are 0 best solutions below