vue-tiny-datatable
v0.1.0
Published
Display array in a responsive table.
Downloads
2
Readme
vue-tiny-datatable
Display array in a responsive table.
Getting Started
<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)