Last active
February 13, 2019 11:33
-
-
Save dmsysop/f807649e27e75a24f52c333d72f3eba9 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<transition-group tag="tbody" name="flip-list"> | |
<tr v-for="(item, index) in lista" :key="index" :id="'linha_'+item.id"> | |
<template v-for="field in fields"> | |
<template v-for="(i, k) in item"> | |
<td :class="((k === 0) ? 'text-right' : 'text-center')" v-if="(k == field)" v-html="i.toUpperCase()" :key="k"></td> | |
</template> | |
</template> | |
<td class="actions text-center"> | |
<div class="btn-group" role="group" aria-label="Botões de Ação"> | |
<a href="#" id="editar" @click="edita(item.id)" class="btn btn-sm btn-success" alt="Editar" title="Editar"><i class="glyphicon glyphicon-edit"></i> </a> | |
<a href="#" id="deletar" @click="remove(item.id)" class="btn btn-sm btn-danger" alt="Remover" title="Remover"><i class="glyphicon glyphicon-trash"></i></a> | |
</div> | |
</td> | |
</tr> | |
</transition-group> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment