fix(components): [pagination] fix typo (#7420)

This commit is contained in:
handsomeFu 2022-05-01 06:42:41 +08:00 committed by GitHub
parent 9aa6cc1912
commit 6b9ac43419
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,7 +8,7 @@
@change="handleChange"
>
<el-option
v-for="item in innerPagesizes"
v-for="item in innerPageSizes"
:key="item"
:value="item"
:label="item + t('el.pagination.pagesize')"
@ -84,7 +84,7 @@ export default defineComponent({
}
)
const innerPagesizes = computed(() => props.pageSizes)
const innerPageSizes = computed(() => props.pageSizes)
function handleChange(val: number) {
if (val !== innerPageSize.value) {
@ -95,7 +95,7 @@ export default defineComponent({
return {
ns,
innerPagesizes,
innerPageSizes,
innerPageSize,
t,