vue-tables-2
Version:
Vue.js 2 grid components
24 lines (23 loc) • 672 B
JavaScript
Object.defineProperty(exports, "__esModule", {
value: true
});
exports["default"] = void 0;
var _default = {
name: "RLDropdownPagination",
inject: ['limit', 'count', 'theme', 'page', 'setPage', 'totalPages', 'componentsOverride', 'id', 'opts'],
render: function render() {
return this.$scopedSlots["default"]({
opts: this.opts(),
name: this.id,
setPage: this.setPage,
page: this.page(),
records: this.count(),
perPage: parseInt(this.limit()),
theme: this.theme,
totalPages: this.totalPages(),
override: this.componentsOverride.dropdownPagination
});
}
};
exports["default"] = _default;
;