fix(compiler): properly bail stringfication for nested slot elements
This commit is contained in:
parent
aea88c3280
commit
f74b16ccfe
@ -111,7 +111,14 @@ function walk(
|
|||||||
|
|
||||||
// walk further
|
// walk further
|
||||||
if (child.type === NodeTypes.ELEMENT) {
|
if (child.type === NodeTypes.ELEMENT) {
|
||||||
|
const isComponent = child.tagType === ElementTypes.COMPONENT
|
||||||
|
if (isComponent) {
|
||||||
|
context.scopes.vSlot++
|
||||||
|
}
|
||||||
walk(child, context)
|
walk(child, context)
|
||||||
|
if (isComponent) {
|
||||||
|
context.scopes.vSlot--
|
||||||
|
}
|
||||||
} else if (child.type === NodeTypes.FOR) {
|
} else if (child.type === NodeTypes.FOR) {
|
||||||
// Do not hoist v-for single child because it has to be a block
|
// Do not hoist v-for single child because it has to be a block
|
||||||
walk(child, context, child.children.length === 1)
|
walk(child, context, child.children.length === 1)
|
||||||
|
@ -60,11 +60,8 @@ type StringifiableNode = PlainElementNode | TextCallNode
|
|||||||
* This optimization is only performed in Node.js.
|
* This optimization is only performed in Node.js.
|
||||||
*/
|
*/
|
||||||
export const stringifyStatic: HoistTransform = (children, context, parent) => {
|
export const stringifyStatic: HoistTransform = (children, context, parent) => {
|
||||||
if (
|
// bail stringification for slot content
|
||||||
parent.type === NodeTypes.ELEMENT &&
|
if (context.scopes.vSlot > 0) {
|
||||||
(parent.tagType === ElementTypes.COMPONENT ||
|
|
||||||
parent.tagType === ElementTypes.TEMPLATE)
|
|
||||||
) {
|
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user