@indielayer/ui
Version:
Indielayer UI Components with Tailwind CSS build for Vue 3
22 lines (21 loc) • 562 B
JavaScript
import { defineComponent as r, renderSlot as s, unref as d } from "vue";
import { useInfiniteLoader as i } from "../../composables/infinite-loader/useInfiniteLoader.js";
const a = {
name: "XInfiniteLoader"
}, f = /* @__PURE__ */ r({
...a,
props: {
isRowLoaded: { type: Function },
loadMoreRows: { type: Function },
minimumBatchSize: {},
threshold: {},
rowCount: {}
},
setup(e) {
const o = e, { onRowsRendered: n } = i(o);
return (t, u) => s(t.$slots, "default", { onRowsRendered: d(n) });
}
});
export {
f as default
};