fix(Toast): should reset duration when type or message changed (#8742)

This commit is contained in:
neverland 2021-05-22 19:46:55 +08:00 committed by GitHub
parent aedea6e389
commit 5b6dadc39f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -119,7 +119,7 @@ export default defineComponent({
watch(() => [props.show, props.forbidClick], toggleClickable);
watch(
() => [props.show, props.duration],
() => [props.show, props.type, props.message, props.duration],
() => {
clearTimer();
if (props.show && props.duration > 0) {