We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6b55335 commit 80c04c3Copy full SHA for 80c04c3
1 file changed
packages/client/modules/directives.ts
@@ -41,7 +41,8 @@ export default function createDirectives() {
41
},
42
unmounted(el, dir) {
43
const elements = dirInject(dir, injectionTabElements)!
44
- remove(elements.value, el)
+ if (elements?.value)
45
+ remove(elements.value, el)
46
47
})
48
0 commit comments