fix(Space): Text is not defined in SSR (#11549)

This commit is contained in:
qiang 2023-02-07 10:13:30 +08:00 committed by GitHub
parent ff14e7585b
commit c05c31772a
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -1,10 +1,12 @@
import {
computed,
Comment,
CSSProperties,
defineComponent,
ExtractPropTypes,
Fragment,
PropType,
Text,
type VNode,
} from 'vue';
import { createNamespace } from '../utils';
@ -47,7 +49,7 @@ function filterEmpty(children: VNode[] = []) {
(c) =>
!(
c &&
((typeof Comment !== 'undefined' && c.type === Comment) ||
(c.type === Comment ||
(c.type === Fragment && c.children?.length === 0) ||
(c.type === Text && (c.children as string).trim() === ''))
)