diff --git a/src/core/vdom/create-element.ts b/src/core/vdom/create-element.ts
index 62dd004c34a..6abade56757 100644
--- a/src/core/vdom/create-element.ts
+++ b/src/core/vdom/create-element.ts
@@ -146,9 +146,14 @@ function applyNS(vnode, ns, force?: boolean) {
ns = undefined
force = true
}
- if (isDef(vnode.children)) {
- for (let i = 0, l = vnode.children.length; i < l; i++) {
- const child = vnode.children[i]
+ const children =
+ vnode.children ||
+ // #11315
+ (vnode.componentOptions && vnode.componentOptions.children)
+
+ if (isDef(children)) {
+ for (let i = 0, l = children.length; i < l; i++) {
+ const child = children[i]
if (
isDef(child.tag) &&
(isUndef(child.ns) || (isTrue(force) && child.tag !== 'svg'))
diff --git a/test/unit/modules/vdom/create-element.spec.ts b/test/unit/modules/vdom/create-element.spec.ts
index f97b4bc07cf..7ba8730c42c 100644
--- a/test/unit/modules/vdom/create-element.spec.ts
+++ b/test/unit/modules/vdom/create-element.spec.ts
@@ -147,6 +147,49 @@ describe('create-element', () => {
expect(vnode.children[0].children[1].ns).toBe('svg')
})
+ // #11315
+ it('render svg foreignObject nested component slot with correct namespace', () => {
+ const vm = new Vue({
+ template: `
+
+ `,
+ components: {
+ 'box': {
+ template: `
+