DEV Community

Discussion on: Vue.js Pattern for Async Requests: Using Renderless Components

Collapse
 
lhermann profile image
Lukas Hermann

I am only using it with get requests. post and put tend to have additional validation steps which I usually do the regular way.
As for scaling: using the renderless component with get requests scales exceptionally well. It works just as well for small components as for really large lists with many parameters and changing options.

Collapse
 
sammerro profile image
Michał Kowalski

Thank you for the response!