We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 4f17be7 commit 1355ee2Copy full SHA for 1355ee2
packages/runtime-core/src/componentRenderContext.ts
@@ -1,4 +1,5 @@
1
import { ComponentInternalInstance } from './component'
2
+import { devtoolsComponentUpdated } from './devtools'
3
import { isRenderingCompiledSlot } from './helpers/renderSlot'
4
import { closeBlock, openBlock } from './vnode'
5
@@ -78,6 +79,11 @@ export function withCtx(
78
79
if (!isRenderingCompiledSlot) {
80
closeBlock()
81
}
82
+
83
+ if (__DEV__ || __FEATURE_PROD_DEVTOOLS__) {
84
+ devtoolsComponentUpdated(ctx)
85
+ }
86
87
return res
88
89
// mark this as a compiled slot function.
0 commit comments