I'm using the following code in HTML
<tr v-for="item in rowData" >
<th scope="row">{{ item.mail }}</th>
<td>{{ item.date }}</td>
<td>{{ item.adress }}</td>
<td>{{ item.company }}</td>
<td>{{ item.fliers }}</td>
</tr>
to add rows to the table dynamically. Everything's working fine with this code when I just open the html file, but when I use Flask and open this code on localhost, I get "jinja2.exceptions.UndefinedError: 'item' is undefined". Is there a way to make this work in Flask?