[Vuejs]-Creating sequential numbers in the auto table jspdf column VusJs

1👍

You could add a index field to your data with the map function.


const dataWithIndex = serverResponse.data.map((d,i) => ({...d,Index:i+1}));

Leave a comment