Skip to content

Commit c1dc8d8

Browse files
committed
fix(namespace): apply every namespace in slot when call applyNS (#11315)
1 parent 0551226 commit c1dc8d8

File tree

2 files changed

+54
-0
lines changed

2 files changed

+54
-0
lines changed

src/core/vdom/create-element.js

+11
Original file line numberDiff line numberDiff line change
@@ -151,6 +151,17 @@ function applyNS (vnode, ns, force) {
151151
}
152152
}
153153
}
154+
155+
// #11315
156+
if (isObject(vnode.componentOptions) && isDef(vnode.componentOptions.children)) {
157+
for (var i = 0, l = vnode.componentOptions.children.length; i < l; i++) {
158+
var child = vnode.componentOptions.children[i]
159+
if (isDef(child.tag) && (
160+
isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))) {
161+
applyNS(child, ns, force)
162+
}
163+
}
164+
}
154165
}
155166

156167
// ref #5318

test/unit/modules/vdom/create-element.spec.js

+43
Original file line numberDiff line numberDiff line change
@@ -143,6 +143,49 @@ describe('create-element', () => {
143143
expect(vnode.children[0].children[1].ns).toBe('svg')
144144
})
145145

146+
// #11315
147+
it('render svg foreignObject nested component slot with correct namespace', () => {
148+
const vm = new Vue({
149+
template: `
150+
<svg>
151+
<box></box>
152+
</svg>
153+
`,
154+
components: {
155+
'box': {
156+
template: `
157+
<foreignObject>
158+
<comp-with-slot>
159+
<p></p><svg></svg>
160+
</comp-with-slot>
161+
</foreignObject>
162+
`,
163+
components: {
164+
'comp-with-slot': {
165+
template: `
166+
<div>
167+
<slot />
168+
</div>
169+
`
170+
}
171+
}
172+
}
173+
}
174+
}).$mount()
175+
const box = vm.$children[0]
176+
const compWithSlot = box.$children[0]
177+
expect(box.$vnode.ns).toBe('svg')
178+
expect(box._vnode.tag).toBe('foreignObject')
179+
expect(box._vnode.ns).toBe('svg')
180+
expect(compWithSlot.$vnode.ns).toBeUndefined()
181+
expect(compWithSlot._vnode.tag).toBe('div')
182+
expect(compWithSlot._vnode.ns).toBeUndefined()
183+
expect(compWithSlot._vnode.children[0].tag).toBe('p')
184+
expect(compWithSlot._vnode.children[0].ns).toBeUndefined()
185+
expect(compWithSlot._vnode.children[1].tag).toBe('svg')
186+
expect(compWithSlot._vnode.children[1].ns).toBe('svg')
187+
})
188+
146189
// #6642
147190
it('render svg foreignObject component with correct namespace', () => {
148191
const vm = new Vue({

0 commit comments

Comments
 (0)