Commit 03ae4a44 authored by Jikkai Xiao's avatar Jikkai Xiao Committed by GitHub

Pagination: fix emit order of page size (#12530)

parent df765427
...@@ -205,8 +205,8 @@ export default { ...@@ -205,8 +205,8 @@ export default {
if (val !== this.$parent.internalPageSize) { if (val !== this.$parent.internalPageSize) {
this.$parent.internalPageSize = val = parseInt(val, 10); this.$parent.internalPageSize = val = parseInt(val, 10);
this.$parent.userChangePageSize = true; this.$parent.userChangePageSize = true;
this.$parent.$emit('size-change', val);
this.$parent.$emit('update:pageSize', val); this.$parent.$emit('update:pageSize', val);
this.$parent.$emit('size-change', val);
} }
} }
} }
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment