10000 fix(runtime-core): fix the issue of passing incorrect parentComponent to patch when KeepAlive is activated by yinhangfeng · Pull Request #13218 · vuejs/core · GitHub
[go: up one dir, main page]

Skip to content

fix(runtime-core): fix the issue of passing incorrect parentComponent to patch when KeepAlive is activated #13218

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Next Next commit
fix(runtime-core): fix the issue of passing incorrect parentComponent…
… to patch when KeepAlive is activated
  • Loading branch information
yinhangfeng committed Apr 17, 2025
commit 4bf862610f8f2a89a96c0933f33266eb5f9fbead
2 changes: 1 addition & 1 deletion packages/runtime-core/src/components/KeepAlive.ts
Original file line number Diff line number Diff line change
Expand Up @@ -143,7 +143,7 @@ const KeepAliveImpl: ComponentOptions = {
vnode,
container,
anchor,
instance,
instance.parent,
parentSuspense,
namespace,
vnode.slotScopeIds,
Expand Down
0