Skip to content

rajcracker/VueNIceTable

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

4 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

vue-nice-table

Plugin installation

npm i vue-nice-table

Example how to use plugin

Use in component file where to display table

<VueNiceTable :columns="columns" :rows="rows" />

Import component

import VueNiceTable from "./components/VueNiceTable"

Binding data with column name

data() {
    return {
      columns: [
        {
          label: "filed_name",
          field: "field",
          tdClass: "text-left",
          thClass: "text-left"
        }
      ]
    };
  }

Binding API Values

computed: {
 rows: [],
}

Customize configuration

See Configuration Reference.

About

Vue table component

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published