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 d5c2cbd commit be27e21Copy full SHA for be27e21
src/index.js
@@ -229,14 +229,14 @@ function processTree(options) {
229
return currentNode.content || nextNode.content;
230
});
231
232
+ // Process <slot> tags
233
+ processSlotContent(nextNode, filledSlots, options);
234
+
235
nextNode = processTree(options)(nextNode, messages);
236
237
// Process <fill> tags
238
processFillContent(nextNode, filledSlots, options);
239
- // Process <slot> tags
- processSlotContent(nextNode, filledSlots, options);
-
240
// Remove component tag and replace content with <yield>
241
currentNode.tag = false;
242
currentNode.content = content;
0 commit comments