UNPKG

press-ui

Version:

简单、易用的跨端组件库,兼容 Vue2 和 Vue3,同时支持 uni-app和普通 Vue 项目

7 lines (6 loc) 187 B
export function sortMPChildren(children) { const shouldSort = children.find(child => child.sortIndex); if (shouldSort) { children.sort((a, b) => a.sortIndex - b.sortIndex); } }