[Vuejs]-What should I do to speed up my vue.js project?

1๐Ÿ‘

โœ…

I am adding couple of points you can try it, it might helpful.

  1. Virtual Scrolling โ€“ Use virtual scrolling it only renders required data, it will increase your perfomance.

  2. Render Once โ€“ This keyword is from vue js documentation , v-once -> You can use this keyword where element should always rendered once.

     Ex: <span v-once>test</span>
    
  3. Eliminate Duplicate Rendering โ€“ This point will also help in perfomance.

  4. Remove unused packages and components.

Leave a comment