mirror of
https://github.com/vbenjs/vue-vben-admin.git
synced 2025-08-27 14:47:28 +08:00
fix: fix build handler & misc (#1060)
* fix(type): fix ant-design-vue -> * fix: fix build handler & misc
This commit is contained in:
@@ -97,7 +97,6 @@
|
||||
const current = ref(props.currentPage || 1);
|
||||
const getData = computed(() => {
|
||||
const { pageSize, list } = props;
|
||||
console.log('refreshData', list);
|
||||
if (pageSize === false) return [];
|
||||
let size = isNumber(pageSize) ? pageSize : 5;
|
||||
return list.slice(size * (unref(current) - 1), size * unref(current));
|
||||
|
Reference in New Issue
Block a user