How to draw dynamic number of Plotly graphs with dynamic data

I am working with VueJs and plotly and understand how to draw 1 plot. I am going to be getting a dynamic number of objects ranging anywhere from 1 through 20, and I need to create individual graphs for them once the data arrives.

The issue I am seeing is that you must have the trace’s and filled area in the data() section for a individual graph. Because it’s bad practice to hardcode upto 20 different graph objects in here I am searching for a clean way to achieve this effect in Javascript working with VueJS 2.0.