0.2.2 • Published 7 years ago

vue2-bootstrap-table v0.2.2

Weekly downloads
8
License
Apache-2.0
Repository
github
Last release
7 years ago

#Vue2-Bootstrap-Table

A simple VueJS 2.0 table component using Bootstrap styles

CSS relies on a parent supplying styles

All JS is written in Vue, with no external dependancies

##Features:

  • Filtering on all keys
  • Pagination
  • Sorting and reverse sorting on any key
  • Optional custom renderers for individual columns
  • Path keys for columns. Specify path using lodash _.get function. Eg: 'obj.obj.obj0.prop'

##Demo to try out the demo install the node modules dev dependencies with npm install and build the code with npm run build

##Usage from a Vue webpack project

import grid from 'vue2-bootstrap-table'

expose it as a component in your .vue file

    ...,
    components: {
      grid: grid
    },
    ...

and use it in as a custom html element

        <grid
          :data="tableData"
          :columns="headers"
          :rowsPerPage="2"
          @clickRow="rowClick"
          :filter-key="searchQuery">
        </grid>
0.2.2

7 years ago

0.2.1

7 years ago

0.2.0

7 years ago

0.1.11

7 years ago

0.1.10

7 years ago

0.1.9

7 years ago

0.1.8

7 years ago

0.1.7

7 years ago

0.1.6

7 years ago

0.1.5

7 years ago

0.1.4

7 years ago

0.1.3

7 years ago

0.1.2

7 years ago

0.1.1

7 years ago

0.1.0

7 years ago