[Vuejs]-Vue js expand collapse list ajax pattern for huge dataset

0๐Ÿ‘

  1. Add feature to your server, which will be generate data and send only one huge data (it will decrease delay, because creating new request from client and connecting throw tcp is taking much time)
  2. Add loading window/spinner and set delay between requests
    By the way it depends on your requests count.

Leave a comment