Skip to content

Latest commit

 

History

History
37 lines (25 loc) · 521 Bytes

README.md

File metadata and controls

37 lines (25 loc) · 521 Bytes

Point Table Vue

Table component that support freeze column, fix header when scrolling down, and manage column visibility Demo

Installation

Install Package

npm i point-table-vue

or

yarn add point-table-vue

Import Globally

import PointTable from 'point-table-vue'

Vue.use(PointTable)

Import Inside Component

import PointTable from 'point-table-vue'

export default {
  components: {
    PointTable
  }
}