[Vuejs]-V-for in a Vue JS component does not output anyhing

0๐Ÿ‘

<div v-for="n in parseInt(lines)" :key="n">

It seems the value of lines was parsed as a string.

Leave a comment