[Vuejs]-Vuejs v-for with django not working for dynamic data

0👍

Got the solution,
I have to convert to value into integer.

So need to change vuejs code as

tableCols : parseInt("{{testtubeplate.number_of_columns}}"), // 12,
tableRows : parseInt("{{testtubeplate.number_of_rows}}"), //8,

Leave a comment