0.1.0 • Published 6 years ago

vue-tiny-datatable v0.1.0

Weekly downloads
1
License
ISC
Repository
-
Last release
6 years ago

vue-tiny-datatable

Display array in a responsive table.

Getting Started

demo

<data-table :items="fruits" :center="false">

center binding is optional, set it to true if you want centered content

data: () => {
    return {
        fruits: [
            { name: 'Banana', price: 3.99 },
            { name: 'Kiwi', price: 0.55 },
            { name: '?', price: 33.0 }
        ]
    }
}

Installing

First install with npm

npm i vue-tiny-datatable

Then use plugin

Vue.use(VueTinyDataTable)