推广小程序后台代码
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.

11 lines
218 B

  1. /**
  2. * components util
  3. */
  4. /**
  5. * 清理空值对象
  6. * @param children
  7. * @returns {*[]}
  8. */
  9. export function filterEmpty (children = []) {
  10. return children.filter(c => c.tag || (c.text && c.text.trim() !== ''))
  11. }