UNPKG

vuejs-smart-table

Version:

[![CircleCI](https://circleci.com/gh/tochoromero/vuejs-smart-table/tree/master.svg?style=shield)](https://circleci.com/gh/tochoromero/vuejs-smart-table/tree/master)

21 lines (19 loc) 396 B
import VTable from './VTable.vue' import VTh from './VTh.vue' import VTr from './VTr.vue' import SmartPagination from './SmartPagination.vue' export { VTable, VTh, VTr, SmartPagination } /**/ export default { install (Vue) { Vue.component('v-table', VTable) Vue.component('v-th', VTh) Vue.component('v-tr', VTr) Vue.component('smart-pagination', SmartPagination) } }