Skip to content

09 v_table

Generic table component

Props

Required:

  • data: [{a:1,b:2},{a:3,b:4}]

Optional:

  • cols: ['a','b'] - display cols
  • cols: ['test', 'test1', { name: 'timestamp', type: 'tdate' }] - dispaly date

Examples

Simple

HTML
  <v_table :data="[{a:1,b:2},{a:3,b:4}]"></v_table>