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 058dd1e commit 83ec206Copy full SHA for 83ec206
src/utils.ts
@@ -147,7 +147,8 @@ export function excludeNames(names: string[], slot: Slot) {
147
let currSlot: Slot | null = slot
148
while (currSlot != null) {
149
for (const mapName of currSlot.names.keys()) {
150
- if (['watch', 'hooks', 'setup'].includes(mapName)) {
+
151
+ if (['watch', 'hooks', 'setup','emits'].includes(mapName)) {
152
continue
153
}
154
const map = currSlot.names.get(mapName)!
0 commit comments