diff --git a/src/pagination/index.js b/src/pagination/index.js index f1d8b281a..f58622818 100644 --- a/src/pagination/index.js +++ b/src/pagination/index.js @@ -110,7 +110,13 @@ export default createComponent({ } }; - watch(() => props.modelValue, select, { immediate: true }); + watch( + () => props.modelValue, + (value) => { + select(value); + }, + { immediate: true } + ); const renderDesc = () => { if (props.mode !== 'multi') {