lodash插件

安装

npm install lodash

引入

import orderBy from 'lodash/orderBy'

使用

  • orderBy(要排序的变量,要排序的字段,升序还是降序)
// 例如,评论按照点赞数量排序
orderBy(lilst, 'like', 'desc')

你可能感兴趣的:(一些插件)