Skip to content
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

fix(runtime-core): change handling logic when KeepAlive include props is set to empty string (fix #11366) #12740

Closed
wants to merge 1 commit into from
Closed
Show file tree
Hide file tree
Changes from all commits
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
49 changes: 49 additions & 0 deletions packages/runtime-core/__tests__/components/KeepAlive.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -1173,4 +1173,53 @@ describe('KeepAlive', () => {
expect(deactivatedHome).toHaveBeenCalledTimes(0)
expect(unmountedHome).toHaveBeenCalledTimes(1)
})

// #11366
test('component should be unmounted when include set to empty string', async () => {
const unmountedA = vi.fn()
const unmountedB = vi.fn()
const viewRef = ref(true)

const A = {
name: 'A',
setup() {
onUnmounted(unmountedA)
return () => 'A'
},
}

const B = {
name: 'B',
setup() {
onUnmounted(unmountedB)
return () => 'B'
},
}

const App = createApp({
setup() {
return () => {
return [
h(
KeepAlive,
{
include: '',
},
[viewRef.value ? h(A) : h(B)],
),
]
}
},
})

App.mount(root)
viewRef.value = false
await nextTick()
expect(unmountedA).toHaveBeenCalledTimes(1)
expect(unmountedB).toHaveBeenCalledTimes(0)
viewRef.value = true
await nextTick()
expect(unmountedA).toHaveBeenCalledTimes(1)
expect(unmountedB).toHaveBeenCalledTimes(1)
})
})
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 @@ -307,7 +307,7 @@ const KeepAliveImpl: ComponentOptions = {
const { include, exclude, max } = props

if (
(include && (!name || !matches(include, name))) ||
((include || include === '') && (!name || !matches(include, name))) ||
(exclude && name && matches(exclude, name))
) {
// #11717
Expand Down