摘要: 1.idea类注释 打开:file->setting->Editor->File and Code Templates->Includes->File Header 类注释模板: /** * @title: ${NAME} * @projectName ${PROJECT_NAME} * @desc 阅读全文
posted @ 2021-05-08 10:24 LilLazy 阅读(192) 评论(0) 推荐(0)
摘要: list就是你获取的数据数组 computed:{ sortlist(){ return this.sortlist.sort((a, b) => { return a['value'].localeCompare(b['value']) //value是list你需要索引的字段名称 }) } } 阅读全文
posted @ 2021-05-08 10:07 LilLazy 阅读(1913) 评论(0) 推荐(0)