Skip to content
Closed
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/runtime-core/src/hydration.ts
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@ const enum DOMNodeTypes {

let hasMismatch = false

const isSVGContainer = (container: Element) =>
export const isSVGContainer = (container: Element) =>
/svg/.test(container.namespaceURI!) && container.tagName !== 'foreignObject'

const isComment = (node: Node): node is Comment =>
Expand Down
11 changes: 9 additions & 2 deletions packages/runtime-core/src/renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,11 @@ import {
callWithErrorHandling,
callWithAsyncErrorHandling
} from './errorHandling'
import { createHydrationFunctions, RootHydrateFunction } from './hydration'
import {
createHydrationFunctions,
RootHydrateFunction,
isSVGContainer
} from './hydration'
import { invokeDirectiveHook } from './directives'
import { startMeasure, endMeasure } from './profiling'
import { ComponentPublicInstance } from './componentPublicInstance'
Expand Down Expand Up @@ -662,7 +666,10 @@ function baseCreateRenderer(
isSVG: boolean,
optimized: boolean
) => {
isSVG = isSVG || (n2.type as string) === 'svg'
isSVG =
isSVG ||
(n2.type as string) === 'svg' ||
isSVGContainer(container as Element)
if (n1 == null) {
mountElement(
n2,
Expand Down