mirror of
https://github.com/jeecgboot/JeecgBoot.git
synced 2025-12-08 17:12:28 +08:00
12 lines
218 B
Java
12 lines
218 B
Java
/**
|
|
* components util
|
|
*/
|
|
|
|
/**
|
|
* 清理空值,对象
|
|
* @param children
|
|
* @returns {*[]}
|
|
*/
|
|
export function filterEmpty (children = []) {
|
|
return children.filter(c => c.tag || (c.text && c.text.trim() !== ''))
|
|
} |