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 1437f8d commit 1402e32Copy full SHA for 1402e32
packages/create-instance/create-component-stubs.js
@@ -93,7 +93,7 @@ function getScopedSlotRenderFunctions(ctx: any): Array<string> {
93
ctx.$options.parent._vnode.data.scopedSlots
94
) {
95
const slotKeys: Array<string> = ctx.$options.parent._vnode.data.scopedSlots
96
- return keys(slotKeys).filter(x => x[0] !== '_' && !x.includes('$'))
+ return keys(slotKeys).filter(x => x !== '_normalized' && x !== '$stable')
97
}
98
99
return []
0 commit comments