0.1.0 • Published 7 years ago
vue-tiny-datatable v0.1.0
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-datatableThen use plugin
Vue.use(VueTinyDataTable)0.1.0
7 years ago