You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
635 B
26 lines
635 B
import type { VNodeTypes } from 'vue';
|
|
import { isFragment } from '../../_util/props-util';
|
|
|
|
export interface Option {
|
|
keepEmpty?: boolean;
|
|
}
|
|
|
|
export default function toArray(children: any[], option: Option = {}): any[] {
|
|
let ret: VNodeTypes[] = [];
|
|
|
|
children.forEach((child: any) => {
|
|
if ((child === undefined || child === null) && !option.keepEmpty) {
|
|
return;
|
|
}
|
|
if (Array.isArray(child)) {
|
|
ret = ret.concat(toArray(child));
|
|
} else if (isFragment(child) && child.props) {
|
|
ret = ret.concat(toArray(child.props.children, option));
|
|
} else {
|
|
ret.push(child);
|
|
}
|
|
});
|
|
|
|
return ret;
|
|
}
|