Skip to content

Commit d87b379

Browse files
author
Damir
committed
Check shorthand block name
1 parent a091cc2 commit d87b379

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/index.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ function getSlots(tag, content = []) {
212212
}
213213

214214
if (!node.attrs.name) {
215-
node.attrs.name = Object.keys({...node.attrs}).find(name => !Object.keys(slotTypes).includes(name) && name !== 'type');
215+
node.attrs.name = Object.keys({...node.attrs}).find(name => !Object.keys(slotTypes).includes(name) && name !== 'type' && name !== defaultSlotType);
216216
}
217217

218218
if (!node.attrs.name) {

0 commit comments

Comments
 (0)