PHP Classes

File: frontend/js/componentes/table.js

Recommend this page to a friend!
  Classes of Rodrigo Faustino   Micro-Blog   frontend/js/componentes/table.js   Download  
File: frontend/js/componentes/table.js
Role: Auxiliary data
Content type: text/plain
Description: Auxiliary data
Class: Micro-Blog
Blog management system extensible with classes
Author: By
Last change:
Date: 2 days ago
Size: 623 bytes
 

Contents

Class file image Download
export const Tabela = { props: { titulos: Array, dados: Array }, template: ` <table> <caption>Tabela Teste</caption> <thead> <tr> <th v-for="titulo in titulos" :key="titulo">{{ titulo }}</th> </tr> </thead> <tbody> <tr v-for="pess in dados" :key="pess.pessoa"> <td>{{ pess.pessoa }}</td> <td>{{ pess.contato }}</td> <td>{{ pess.pais }}</td> </tr> </tbody> </table> ` };