Guest User

Untitled

a guest
Sep 22nd, 2018
72
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.46 KB | None | 0 0
  1. <div v-for="(m, ind) in arrayMeses" :key="ind" v-if="m" class="mes">
  2. <table border="1" width="100%">
  3. <tbody>
  4. <tr class="mes_title">
  5. <td colspan="7" class="mes_title font-14">
  6. {{ m }} - {{ testeComputed(ind) }}
  7. </td>
  8. </tr>
  9. </tboddy>
  10. </table>
  11.  
  12. computed: {
  13. testeComputed: function(ind) {
  14. console.log('m',ind)
  15. return 'teste' + ind
  16. },
  17. },
Add Comment
Please, Sign In to add comment