Skip to content

Commit

Permalink
Modify attribute acquisition
Browse files Browse the repository at this point in the history
  • Loading branch information
webvs2 committed Jun 18, 2024
1 parent d258e41 commit 8d83d69
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions packages/components/pagination/src/pagination.ts
Original file line number Diff line number Diff line change
Expand Up @@ -382,7 +382,7 @@ export default defineComponent({
onClick: prev,
}),
jumper: h(Jumper, {
size: _size.value,
size: _size,
}),
pager: h(Pager, {
currentPage: currentPageBridge.value,
Expand All @@ -405,7 +405,7 @@ export default defineComponent({
popperClass: props.popperClass,
disabled: props.disabled,
teleported: props.teleported,
size: _size.value,
size: _size,
}),
slot: slots?.default?.() ?? null,
total: h(Total, { total: isAbsent(props.total) ? 0 : props.total }),
Expand Down Expand Up @@ -447,7 +447,7 @@ export default defineComponent({
ns.b(),
ns.is('background', props.background),
{
[ns.m(_size.value)]: true,
[ns.m(_size)]: true,
},
],
},
Expand Down

0 comments on commit 8d83d69

Please sign in to comment.