Skip to content

Latest commit

 

History

History
40 lines (31 loc) · 974 Bytes

README.md

File metadata and controls

40 lines (31 loc) · 974 Bytes

Vue Grid Component

A vuejs component to render tables. It obviously still lacks features, but everything should work correctly.

Install

npm install vue-grid

bower install vue-grid

Usage

Just include the vue-grid.js file. Also works with amd or commonJS.

<input type="text" v-model="searchQuery">
<paginaiton id="my-table"></pagination>
<grid id="my-table" rows="{{gridData}}" columns="{{gridColumns}}" filter-key="{{searchQuery}}" per-page="10"></grid>

The id property is an identifier, that connects the table to the pagination. So you can actually place your pagination in another area of the site (e.g. some sidebar).

new Vue({
  el: 'body',
  data: function() {
    return {
      searchQuery: '',
      gridColumns: ['name', 'age'],
      gridData: [
        { name: 'Barack Obama', age: 53 },
        { name: 'Some Dude', age: 24 },
        { name: 'Another Dude', age: 34 }
        // ...
      ]
    };
  }
});