vue-table-pagination
Version:
vue-table-pagination using Jest + vue-test-utils together test webpack3 vue2.
22 lines (13 loc) • 371 B
JavaScript
import TablePagination from './components/Table.vue';
const GmTablePlugin = {
install: function (Vue, options) {
Vue.component(TablePagination.name, TablePagination);
},
};
if (typeof window !== 'undefined' && window.Vue) {
window.Vue.use(GmTablePlugin);
}
export default GmTablePlugin;
export {
GmTable as VueTablePagination
};