vue3-vuetable
v3.0.4
Published
Datatable component for Vue 3.x
Downloads
1,217
Maintainers
Readme
Vue3-Vuetable - data table simplify!
Usage
NPM
npm install vue3-vuetable --save-dev
import Vuetable from 'vue3-vuetable'
import { createApp } from 'vue'
// then register it globally
const app = createApp({...})
app.use(Vuetable)
// or locally
var Child = {
template: '<vuetable></vueladda>'
}
const app = createApp({
components: {
'vuetable': Vuetable,
}
})
Also you have the ability to access certain components if you need them:
Vuetable: Vuetable.default/Vuetable.Vuetable,
VuetablePagination: Vuetable.VuetablePagination,
VuetablePaginationInfo: Vuetable.VuetablePaginationInfo,
VuetablePaginationDropdown: Vuetable.VuetablePaginationDropdown
License
Vuetable is open-sourced software licensed under the MIT license.