I want to convert the conditional code provided below into vue.js syntax
<div id="app">
<table>
<tr v-for="(sintese, index) in sinteses" :key="index">
<td v-if="index % 10 === 0 && index !== 0"></td>
<td>
<label class="btn btn-primary">
<input type="checkbox" autocomplete="off" name="chksintese" :id="sintese.cod_sintese_conversa">
<span class="glyphicon glyphicon-ok"></span>
{{sintese.descricao}}
</label>
</td>
</tr>
</table>
</div>